do not transform toString to quote values (NULL integer becomes 0 otherwise)

This commit is contained in:
Denis Rouzaud 2014-07-30 11:37:56 +02:00 committed by Matthias Kuhn
parent 0241d4faf3
commit b357a66652

View File

@ -1676,7 +1676,7 @@ bool QgsPostgresProvider::addFeatures( QgsFeatureList &flist )
} }
else else
{ {
values += delim + quotedValue( v.toString() ); values += delim + quotedValue( v );
} }
} }
else else