add exporting of SQLite table

This commit is contained in:
Sarah Hoffmann
2023-10-12 10:45:12 +02:00
parent 837bdecde8
commit 114cdafe7e
3 changed files with 152 additions and 17 deletions

View 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]: