This commit is contained in:
Alex Garcia 2026-08-11 15:07:31 -07:00 committed by GitHub
commit 006b446d57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -813,7 +813,7 @@ def get_all_foreign_keys(conn):
def detect_spatialite(conn):
rows = conn.execute(
'select 1 from sqlite_master where tbl_name = "geometry_columns"'
"select 1 from sqlite_master where tbl_name = 'geometry_columns'"
).fetchall()
return len(rows) > 0