]> git.openstreetmap.org Git - nominatim.git/commitdiff
disable SPGist for PostgreSQL < 11
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 13 Jun 2023 13:15:43 +0000 (15:15 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Tue, 13 Jun 2023 13:15:43 +0000 (15:15 +0200)
Before that version, an operator needed to be given.

nominatim/db/sql_preprocessor.py

index 31b4a8c0f9a0042877cb652f6578fe2e896a899a..2e11f57195323e2e53aec9dc77d541f81b6522e6 100644 (file)
@@ -57,9 +57,11 @@ def _setup_postgresql_features(conn: Connection) -> Dict[str, Any]:
     """
     pg_version = conn.server_version_tuple()
     postgis_version = conn.postgis_version_tuple()
+    pg11plus = pg_version >= (11, 0, 0)
+    ps3 = postgis_version >= (3, 0)
     return {
-        'has_index_non_key_column': pg_version >= (11, 0, 0),
-        'spgist_geom' : 'SPGIST' if postgis_version >= (3, 0) else 'GIST'
+        'has_index_non_key_column': pg11plus,
+        'spgist_geom' : 'SPGIST' if pg11plus and ps3 else 'GIST'
     }
 
 class SQLPreprocessor: