From b9b50899a60260de2ee2cd626a430c8098912b99 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Thu, 3 Nov 2011 19:50:36 -0400 Subject: [PATCH] sqlite: do not alias geometry field name --- tests/python_tests/sqlite_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python_tests/sqlite_test.py b/tests/python_tests/sqlite_test.py index 11d2bfdcc..464c9690f 100644 --- a/tests/python_tests/sqlite_test.py +++ b/tests/python_tests/sqlite_test.py @@ -164,7 +164,7 @@ if 'sqlite' in mapnik2.DatasourceCache.instance().plugin_names(): eq_(feature['lat'],17.078) ds = mapnik2.SQLite(file='../data/sqlite/world.sqlite', - table='(select OGC_FID,GEOMETRY as geom from world_merc)', + table='(select OGC_FID,GEOMETRY from world_merc)', ) fs = ds.featureset() feature = fs.next()