X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2a0c7fb57a769a07984ed17ebc86848e5ebe07d8..80a74181e463efeb071a3904346107d05e88a7a6:/tests/steps/db_results.py?ds=sidebyside diff --git a/tests/steps/db_results.py b/tests/steps/db_results.py index 1105ee39..53374e71 100644 --- a/tests/steps/db_results.py +++ b/tests/steps/db_results.py @@ -53,6 +53,7 @@ def check_placex_content(step, tablename): if tablename == 'location_property_osmline': q = q + ' FROM %s where osm_id = %%s' % (tablename,) else: + q = q + ", ST_GeometryType(geometry) as geometrytype" q = q + ' FROM %s where osm_type = %%s and osm_id = %%s' % (tablename,) if cls is None: if tablename == 'location_property_osmline':