X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/4b8632d1e563f63591e33f8561271552d074a5e2..59de7c5a9b2e16fdda93d3f9aac33f3b67a5bfb1:/tests/steps/db_results.py diff --git a/tests/steps/db_results.py b/tests/steps/db_results.py index 2b44215e..f65e9924 100644 --- a/tests/steps/db_results.py +++ b/tests/steps/db_results.py @@ -49,6 +49,7 @@ def check_placex_content(step, tablename): q = 'SELECT *' if tablename == 'placex': q = q + ", ST_X(centroid) as clat, ST_Y(centroid) as clon" + q = q + ", ST_GeometryType(geometry) as geometrytype" q = q + ' FROM %s where osm_type = %%s and osm_id = %%s' % (tablename,) if cls is None: params = (osmtype, osmid)