]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/db/sqlalchemy_types.py
add exporting of SQLite table
[nominatim.git] / nominatim / db / sqlalchemy_types.py
index 7b9590363db2a055962e61ac2d850397cfc0e5d2..e9687dffa5af19aca840016af9a4e6dc7811a845 100644 (file)
@@ -28,7 +28,7 @@ class Geometry(types.UserDefinedType): # type: ignore[type-arg]
 
 
     def get_col_spec(self) -> str:
-        return f'GEOMETRY({self.subtype}, 4326)'
+        return f'GEOMETRY'
 
 
     def bind_processor(self, dialect: 'sa.Dialect') -> Callable[[Any], str]: