Skip to content

Commit

Permalink
OGR: respect provider default values
Browse files Browse the repository at this point in the history
Fixes #33383 (for OGR, spatialite commit follows)
  • Loading branch information
elpaso committed Jan 27, 2020
1 parent ec4d9f6 commit 05c6150
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/core/providers/ogr/qgsogrprovider.cpp
Expand Up @@ -1584,7 +1584,12 @@ bool QgsOgrProvider::addFeaturePrivate( QgsFeature &f, Flags flags )
OGRFieldType type = OGR_Fld_GetType( fldDef );

QVariant attrVal = attrs.at( qgisAttId );
if ( attrVal.isNull() || ( type != OFTString && attrVal.toString().isEmpty() ) )
// The field value is equal to the default (that might be a provider-side expression)
if ( mDefaultValues.contains( qgisAttId ) && attrVal.toString() == mDefaultValues.value( qgisAttId ) )
{
OGR_F_UnsetField( feature.get(), ogrAttId );
}
else if ( attrVal.isNull() || ( type != OFTString && attrVal.toString().isEmpty() ) )
{
// Starting with GDAL 2.2, there are 2 concepts: unset fields and null fields
// whereas previously there was only unset fields. For a GeoJSON output,
Expand Down
56 changes: 56 additions & 0 deletions tests/src/python/test_provider_ogr.py
Expand Up @@ -15,6 +15,7 @@
import sys
import tempfile
import hashlib
from datetime import datetime

from osgeo import gdal, ogr # NOQA
from qgis.PyQt.QtCore import QVariant, QByteArray
Expand All @@ -27,6 +28,7 @@
from qgis.testing import start_app, unittest

from utilities import unitTestDataPath
from qgis.utils import spatialite_connect

start_app()
TEST_DATA_DIR = unitTestDataPath()
Expand Down Expand Up @@ -609,6 +611,60 @@ def testReloadDataAndFeatureCount(self):
self.assertEqual(vl.featureCount(), 1)
gdal.Unlink(filename)

def testSpatialiteDefaultValues(self):
"""Test wether in spatialite table with default values like CURRENT_TIMESTAMP or
(datetime('now','localtime')) they are respected. See GH #33383"""

# Create the test table

dbname = os.path.join(tempfile.gettempdir(), "test.sqlite")
if os.path.exists(dbname):
os.remove(dbname)
con = spatialite_connect(dbname, isolation_level=None)
cur = con.cursor()
cur.execute("BEGIN")
sql = "SELECT InitSpatialMetadata()"
cur.execute(sql)

# simple table with primary key
sql = """
CREATE TABLE test_table (
id integer primary key autoincrement,
comment text,
created_at_01 text DEFAULT (datetime('now','localtime')),
created_at_02 text DEFAULT CURRENT_TIMESTAMP,
anumber INTEGER DEFAULT 123
)
"""
cur.execute(sql)
cur.execute("COMMIT")
con.close()

vl = QgsVectorLayer(dbname + '|layername=test_table', 'test_table', 'ogr')
self.assertTrue(vl.isValid())
feature = QgsFeature(vl.fields())
for idx in range(vl.fields().count()):
default = vl.dataProvider().defaultValueClause(idx)
if default != '':
feature.setAttribute(idx, default)
else:
feature.setAttribute(idx, 'A comment')

# Save it for the test
now = datetime.now()

self.assertTrue(vl.dataProvider().addFeature(feature))
del(vl)

# Verify
vl2 = QgsVectorLayer(dbname + '|layername=test_table', 'test_table', 'ogr')
self.assertTrue(vl2.isValid())
feature = next(vl2.getFeatures())
self.assertTrue(feature.attribute(2).startswith(now.strftime('%Y-%m-%d')))
self.assertTrue(feature.attribute(3).startswith(now.strftime('%Y-%m-%d')))
self.assertEqual(feature.attribute(4), 123)
self.assertEqual(feature.attribute(1), 'A comment')


if __name__ == '__main__':
unittest.main()

0 comments on commit 05c6150

Please sign in to comment.