X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/91d2fb6b1c7225bcb71c0c0ff01d177683b38d48..72625dc72a628d843d7a3ebc0c813689408b4cf8:/nominatim/db/status.py diff --git a/nominatim/db/status.py b/nominatim/db/status.py index c2ff63db..71e58787 100644 --- a/nominatim/db/status.py +++ b/nominatim/db/status.py @@ -17,7 +17,10 @@ def compute_database_date(conn): """ # First, find the node with the highest ID in the database with conn.cursor() as cur: - osmid = cur.scalar("SELECT max(osm_id) FROM place WHERE osm_type='N'") + if conn.table_exists('place'): + osmid = cur.scalar("SELECT max(osm_id) FROM place WHERE osm_type='N'") + else: + osmid = cur.scalar("SELECT max(osm_id) FROM placex WHERE osm_type='N'") if osmid is None: LOG.fatal("No data found in the database.")