]> git.openstreetmap.org Git - nominatim.git/commitdiff
do not send outdated parameters to osm2pgsql flex
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 14 Feb 2024 15:07:27 +0000 (16:07 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Tue, 27 Feb 2024 09:15:36 +0000 (10:15 +0100)
nominatim/tools/exec_utils.py

index c742e3e0061d1d8778d55c8ab975b52873f3fc91..db89c38947d35a17f6e75a0964ea3b48a5aaa4ce 100644 (file)
@@ -31,7 +31,7 @@ def run_osm2pgsql(options: Mapping[str, Any]) -> None:
     """
     env = get_pg_env(options['dsn'])
     cmd = [str(options['osm2pgsql']),
-           '--hstore', '--latlon', '--slim',
+           '--slim',
            '--log-progress', 'true',
            '--number-processes', '1' if options['append'] else str(options['threads']),
            '--cache', str(options['osm2pgsql_cache']),
@@ -43,7 +43,7 @@ def run_osm2pgsql(options: Mapping[str, Any]) -> None:
                                     os.environ.get('LUAPATH', ';')))
         cmd.extend(('--output', 'flex'))
     else:
-        cmd.extend(('--output', 'gazetteer'))
+        cmd.extend(('--output', 'gazetteer', '--hstore', '--latlon'))
 
     cmd.append('--append' if options['append'] else '--create')