X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/5071710db7832d13341230c9942bc7030a0ec6dc..97a10ec2186faa9aa53a215662714c760e980a00:/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.")