betodealmeida commented on issue #34700: URL: https://github.com/apache/superset/issues/34700#issuecomment-3198084337
This is fixed in `master` (https://github.com/apache/superset/pull/33848) and should be easy to fix in your installation manually: ```diff diff --git a/superset/sql/parse.py b/superset/sql/parse.py index f2fd5474b5..0d53d47d51 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": Dialects.MYSQL, "postgresql": Dialects.POSTGRES, "presto": Dialects.PRESTO, "pydoris": Dialects.DORIS, ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
