Skip to content

Commit

Permalink
[spatialite] Don't skip default values
Browse files Browse the repository at this point in the history
When inserting multiple features in a single prepared statement, the spatialite
provider would skip any default for individual features, even though they have
been specified in the field list, resulting in missing fields.
  • Loading branch information
m-kuhn committed Nov 11, 2016
1 parent 43ffd9e commit 526949b
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/providers/spatialite/qgsspatialiteprovider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3653,9 +3653,6 @@ bool QgsSpatiaLiteProvider::addFeatures( QgsFeatureList & flist )

for ( int i = 0; i < attributevec.count(); ++i )
{
if ( !attributevec.at( i ).isValid() )
continue;

if ( i >= attributeFields.count() )
continue;

Expand Down Expand Up @@ -3711,8 +3708,6 @@ bool QgsSpatiaLiteProvider::addFeatures( QgsFeatureList & flist )
for ( int i = 0; i < attributevec.count(); ++i )
{
QVariant v = attributevec.at( i );
if ( !v.isValid() )
continue;

// binding values for each attribute
if ( i >= attributeFields.count() )
Expand All @@ -3724,7 +3719,11 @@ bool QgsSpatiaLiteProvider::addFeatures( QgsFeatureList & flist )

QVariant::Type type = attributeFields.at( i ).type();

if ( v.isNull() )
if ( !v.isValid() )
{
++ia;
}
else if ( v.isNull() )
{
// binding a NULL value
sqlite3_bind_null( stmt, ++ia );
Expand Down

0 comments on commit 526949b

Please sign in to comment.