This is an automated email from the ASF dual-hosted git repository.

beto pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 2f007bf7a5 fix: typo in SQL dialect map (#33727)
2f007bf7a5 is described below

commit 2f007bf7a5a110631ce48a3fdd595289642aa18d
Author: Beto Dealmeida <[email protected]>
AuthorDate: Mon Jun 9 17:03:31 2025 -0400

    fix: typo in SQL dialect map (#33727)
---
 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,

Reply via email to