Add support for PostgreSQL/Redshift geometric operators (#1723)

This commit is contained in:
benrsatori 2025-02-20 20:50:32 +02:00 committed by GitHub
parent 97f0be6991
commit 339239d0c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 809 additions and 26 deletions

View file

@ -250,4 +250,8 @@ impl Dialect for PostgreSqlDialect {
fn supports_array_typedef_size(&self) -> bool {
true
}
fn supports_geometric_types(&self) -> bool {
true
}
}