]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/python/test_db_sql_preprocessor.py
Added fixture for sql_preprocessor and fixed some issues
[nominatim.git] / test / python / test_db_sql_preprocessor.py
index 3c10000f9169c883f56547665fef1e171f27ba90..08a195bd2d794d9c6f9f01cd18116df64d466b42 100644 (file)
@@ -5,8 +5,6 @@ from pathlib import Path
 
 import pytest
 
-from nominatim.db.sql_preprocessor import SQLPreprocessor
-
 @pytest.fixture
 def sql_factory(tmp_path):
     def _mk_sql(sql_body):
@@ -21,13 +19,6 @@ def sql_factory(tmp_path):
 
     return _mk_sql
 
-
-@pytest.fixture
-def sql_preprocessor(temp_db_conn, tmp_path, def_config, monkeypatch, table_factory):
-    monkeypatch.setenv('NOMINATIM_DATABASE_MODULE_PATH', '.')
-    table_factory('country_name', 'partition INT', (0, 1, 2))
-    return SQLPreprocessor(temp_db_conn, def_config, tmp_path)
-
 @pytest.mark.parametrize("expr,ret", [
     ("'a'", 'a'),
     ("'{{db.partitions|join}}'", '012'),