X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/430c316e45c5fcbaf7f8023958a13ad1f31f44b2..9ff4f66f5555cc812c0e8f10ef007cdeae3b9836:/test/python/conftest.py diff --git a/test/python/conftest.py b/test/python/conftest.py index 9a43a67e..1fca4b62 100644 --- a/test/python/conftest.py +++ b/test/python/conftest.py @@ -173,6 +173,7 @@ def place_row(place_table, temp_db_cursor): """ A factory for rows in the place table. The table is created as a prerequisite to the fixture. """ + psycopg2.extras.register_hstore(temp_db_cursor) idseq = itertools.count(1001) def _insert(osm_type='N', osm_id=None, cls='amenity', typ='cafe', names=None, admin_level=None, address=None, extratags=None, geom=None):