Skip to content
Snippets Groups Projects
Commit 6ff52e4f authored by Gerardo Ganis's avatar Gerardo Ganis
Browse files

pgsql: fix SetNull (thanks to gertsen; see Forum issue)

parent f40b4e50
No related branches found
No related tags found
No related merge requests found
...@@ -676,7 +676,7 @@ Bool_t TPgSQLStatement::GetTimestamp(Int_t npar, Int_t& year, Int_t& month, Int_ ...@@ -676,7 +676,7 @@ Bool_t TPgSQLStatement::GetTimestamp(Int_t npar, Int_t& year, Int_t& month, Int_
Bool_t TPgSQLStatement::SetNull(Int_t npar) Bool_t TPgSQLStatement::SetNull(Int_t npar)
{ {
fBind[npar][0] = 0; fBind[npar] = 0;
return kTRUE; return kTRUE;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment