mirror of
https://github.com/apache/superset.git
synced 2026-04-20 08:34:37 +00:00
feat: add support for JOIN in Druid (#16770)
This commit is contained in:
@@ -19,6 +19,7 @@ import logging
|
||||
from datetime import datetime
|
||||
from typing import Any, Dict, Optional, TYPE_CHECKING
|
||||
|
||||
from superset import is_feature_enabled
|
||||
from superset.db_engine_specs.base import BaseEngineSpec
|
||||
from superset.exceptions import SupersetException
|
||||
from superset.utils import core as utils
|
||||
@@ -35,7 +36,7 @@ class DruidEngineSpec(BaseEngineSpec): # pylint: disable=abstract-method
|
||||
|
||||
engine = "druid"
|
||||
engine_name = "Apache Druid"
|
||||
allows_joins = False
|
||||
allows_joins = is_feature_enabled("DRUID_JOINS")
|
||||
allows_subqueries = True
|
||||
|
||||
_time_grain_expressions = {
|
||||
|
||||
Reference in New Issue
Block a user