X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/cb70a2fde33e9c2455ea1cfb37ee430b00058b82..9c777560cee052d19f8cd555879d10feed89099e:/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.")