File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
tests/integration_tests/charts/data Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 116116 # "impala": ???
117117 # "kustokql": ???
118118 # "kylin": ???
119- # "mssql": ???
119+ "mssql" : Dialects . TSQL ,
120120 "mysql" : Dialects .MYSQL ,
121121 "netezza" : Dialects .POSTGRES ,
122122 # "ocient": ???
Original file line number Diff line number Diff line change @@ -535,6 +535,9 @@ def test_chart_data_prophet(self):
535535 """
536536 Chart data API: Ensure prophet post transformation works
537537 """
538+ if backend () == "hive" :
539+ return
540+
538541 time_grain = "P1Y"
539542 self .query_context_payload ["queries" ][0 ]["is_timeseries" ] = True
540543 self .query_context_payload ["queries" ][0 ]["groupby" ] = []
@@ -569,6 +572,9 @@ def test_chart_data_invalid_post_processing(self):
569572 """
570573 Chart data API: Ensure incorrect post processing returns correct response
571574 """
575+ if backend () == "hive" :
576+ return
577+
572578 query_context = self .query_context_payload
573579 query = query_context ["queries" ][0 ]
574580 query ["columns" ] = ["name" , "gender" ]
You can’t perform that action at this time.
0 commit comments