Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
do not transform toString to quote values (NULL integer becomes 0 oth…
…erwise)
  • Loading branch information
3nids authored and m-kuhn committed Jul 30, 2014
1 parent 5ecc908 commit ed14cf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresprovider.cpp
Expand Up @@ -1676,7 +1676,7 @@ bool QgsPostgresProvider::addFeatures( QgsFeatureList &flist )
}
else
{
values += delim + quotedValue( v.toString() );
values += delim + quotedValue( v );
}
}
else
Expand Down

0 comments on commit ed14cf3

Please sign in to comment.