This is an automated email from the ASF dual-hosted git repository.
beto pushed a commit to branch fix-mariadb-typo
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/fix-mariadb-typo by this push:
new d6133d11a4 fix: typo in SQL dialect map
d6133d11a4 is described below
commit d6133d11a4a9a0de1ace3d08947ac95ae2b2f78d
Author: Beto Dealmeida <[email protected]>
AuthorDate: Mon Jun 9 16:37:51 2025 -0400
fix: typo in SQL dialect map
---
superset/sql/parse.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset/sql/parse.py b/superset/sql/parse.py
index ce26e8d13f..07b9ae5461 100644
--- a/superset/sql/parse.py
+++ b/superset/sql/parse.py
@@ -75,7 +75,7 @@ SQLGLOT_DIALECTS = {
# "impala": ???
# "kustosql": ???
# "kylin": ???
- "mariadb: ": Dialects.MYSQL,
+ "mariadb": Dialects.MYSQL,
"motherduck": Dialects.DUCKDB,
"mssql": Dialects.TSQL,
"mysql": Dialects.MYSQL,