X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b4fe7d7c7df335ce62eb8ec626428b45b38235a6..25318e8a69512c9543ca5c7fee57839d5b417cb0:/nominatim/db/status.py?ds=sidebyside 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.")