This is an automated email from the ASF dual-hosted git repository. beto pushed a commit to branch pinot-dialect in repository https://gitbox.apache.org/repos/asf/superset.git
commit 8798babda6c425c3a2768a8d3cfe950ec44d57d0 Author: Beto Dealmeida <[email protected]> AuthorDate: Fri Jun 20 11:32:22 2025 -0700 chore: use mysql dialect for Pinot --- 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 07b9ae5461..33479795d7 100644 --- a/superset/sql/parse.py +++ b/superset/sql/parse.py @@ -85,7 +85,7 @@ SQLGLOT_DIALECTS = { # "odelasticsearch": ??? "oracle": Dialects.ORACLE, "parseable": Dialects.POSTGRES, - # "pinot": ??? + "pinot": Dialect.MYSQL, "postgresql": Dialects.POSTGRES, "presto": Dialects.PRESTO, "pydoris": Dialects.DORIS,
