Skip to content
Snippets Groups Projects
Commit 601a83e2 authored by Fons Rademakers's avatar Fons Rademakers
Browse files

From Axel:

correctly set string to 0.


git-svn-id: http://root.cern.ch/svn/root/trunk@29991 27541ba8-7e3a-0410-8455-c3a389f83636
parent b22d522e
No related branches found
No related tags found
No related merge requests found
...@@ -507,7 +507,7 @@ Bool_t TPgSQLStatement::SetNull(Int_t npar) ...@@ -507,7 +507,7 @@ Bool_t TPgSQLStatement::SetNull(Int_t npar)
// stmt->SetDouble(2, 0.); // stmt->SetDouble(2, 0.);
// stmt->SetNull(2); // stmt->SetNull(2);
fBind[npar]=""; fBind[npar][0] = 0;
return kTRUE; return kTRUE;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment