mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
fix(sqla-query): order by aggregations in Presto and Hive (#13739)
This commit is contained in:
@@ -82,7 +82,10 @@ class TestExportDatabasesCommand(SupersetTestCase):
|
||||
"schemas_allowed_for_csv_upload": [],
|
||||
}
|
||||
if backend() == "presto":
|
||||
expected_extra = {"engine_params": {"connect_args": {"poll_interval": 0.1}}}
|
||||
expected_extra = {
|
||||
**expected_extra,
|
||||
"engine_params": {"connect_args": {"poll_interval": 0.1}},
|
||||
}
|
||||
|
||||
assert core_files.issubset(set(contents.keys()))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user