This is an automated email from the ASF dual-hosted git repository. hugh pushed a commit to branch hugh/update-elasticsearch in repository https://gitbox.apache.org/repos/asf/superset.git
commit 832051b9807ba5bf8ad3c83a883f4235eed0b3ad Author: hughhhh <[email protected]> AuthorDate: Mon Jun 21 13:22:05 2021 -0400 add more specific engine elastic search --- superset/db_engine_specs/elasticsearch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset/db_engine_specs/elasticsearch.py b/superset/db_engine_specs/elasticsearch.py index 31c15a4..cf96bf1 100644 --- a/superset/db_engine_specs/elasticsearch.py +++ b/superset/db_engine_specs/elasticsearch.py @@ -28,7 +28,7 @@ from superset.utils import core as utils class ElasticSearchEngineSpec(BaseEngineSpec): # pylint: disable=abstract-method engine = "elasticsearch" - engine_name = "ElasticSearch" + engine_name = "ElasticSearch (SQL API)" time_groupby_inline = True time_secondary_columns = True allows_joins = False @@ -83,7 +83,7 @@ class OpenDistroEngineSpec(BaseEngineSpec): # pylint: disable=abstract-method } engine = "odelasticsearch" - engine_name = "ElasticSearch" + engine_name = "ElasticSearch (OpenDistro SQL)" @classmethod def convert_dttm(cls, target_type: str, dttm: datetime) -> Optional[str]:
