This is an automated email from the ASF dual-hosted git repository.
beto pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new be82657940 fix(dremio): Fixes issue with Dremio SQL generation for
Charts with Series Limit (#25657)
be82657940 is described below
commit be8265794059d8bbe216a4cb22c7a3f6adf4bcb3
Author: OskarNS <[email protected]>
AuthorDate: Wed Oct 18 21:54:27 2023 +0200
fix(dremio): Fixes issue with Dremio SQL generation for Charts with Series
Limit (#25657)
---
superset/db_engine_specs/dremio.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/superset/db_engine_specs/dremio.py
b/superset/db_engine_specs/dremio.py
index 2288c52572..c96159f1b8 100644
--- a/superset/db_engine_specs/dremio.py
+++ b/superset/db_engine_specs/dremio.py
@@ -27,8 +27,6 @@ class DremioEngineSpec(BaseEngineSpec):
engine = "dremio"
engine_name = "Dremio"
- allows_alias_in_select = False
-
_time_grain_expressions = {
None: "{col}",
TimeGrain.SECOND: "DATE_TRUNC('second', {col})",