]> git.openstreetmap.org Git - nominatim.git/blobdiff - tests/steps/terrain.py
Merge remote-tracking branch 'origin/master' into osmline
[nominatim.git] / tests / steps / terrain.py
index 0569578aae9c3264231f346981b8ec32b1d472e8..80beebd5a49c8bb67b97268bd19ab7c4c7b6585f 100644 (file)
@@ -175,8 +175,10 @@ def db_template_setup():
     conn = psycopg2.connect(database=world.config.template_db)
     psycopg2.extras.register_hstore(conn, globally=False, unicode=True)
     cur = conn.cursor()
-    for table in ('gb_postcode', 'us_postcode', 'us_state', 'us_statecounty'):
-        cur.execute('TRUNCATE TABLE %s' % (table,))
+    for table in ('gb_postcode', 'us_postcode'):
+        cur.execute("select * from pg_tables where tablename = '%s'" % (table, ))
+        if cur.rowcount > 0:
+            cur.execute('TRUNCATE TABLE %s' % (table,))
     conn.commit()
     conn.close()
     # execute osm2pgsql on an empty file to get the right tables