fix: sqlglot SQL Server (#27577)

This commit is contained in:
Beto Dealmeida 2024-03-21 17:09:40 -04:00 committed by GitHub
parent 6f3afab01d
commit 72a41c1642
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -116,7 +116,7 @@ SQLGLOT_DIALECTS = {
# "impala": ???
# "kustokql": ???
# "kylin": ???
# "mssql": ???
"mssql": Dialects.TSQL,
"mysql": Dialects.MYSQL,
"netezza": Dialects.POSTGRES,
# "ocient": ???

View File

@ -535,6 +535,9 @@ class TestPostChartDataApi(BaseTestChartDataApi):
"""
Chart data API: Ensure prophet post transformation works
"""
if backend() == "hive":
return
time_grain = "P1Y"
self.query_context_payload["queries"][0]["is_timeseries"] = True
self.query_context_payload["queries"][0]["groupby"] = []
@ -569,6 +572,9 @@ class TestPostChartDataApi(BaseTestChartDataApi):
"""
Chart data API: Ensure incorrect post processing returns correct response
"""
if backend() == "hive":
return
query_context = self.query_context_payload
query = query_context["queries"][0]
query["columns"] = ["name", "gender"]