This is an automated email from the ASF dual-hosted git repository. beto pushed a commit to branch sqlglot-sqlserver in repository https://gitbox.apache.org/repos/asf/superset.git
commit 17f32e632004f40781d2333c2ea760240c958c23 Author: Beto Dealmeida <[email protected]> AuthorDate: Tue Mar 19 16:01:30 2024 -0400 fix: sqlglot SQL Server --- 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 6a285660d6..9367d3c59f 100644 --- a/superset/sql_parse.py +++ b/superset/sql_parse.py @@ -116,7 +116,7 @@ SQLGLOT_DIALECTS = { # "impala": ??? # "kustokql": ??? # "kylin": ??? - # "mssql": ??? + "mssql": Dialects.TSQL, "mysql": Dialects.MYSQL, "netezza": Dialects.POSTGRES, # "ocient": ???
