feat(ingest/superset): clickhousedb -> clickhouse mapping in superset ingestion (#11201)

This commit is contained in:
Peter Esselius 2024-08-27 01:38:01 +02:00 committed by GitHub
parent ce99bc4f22
commit 414dc54b13
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -233,6 +233,8 @@ class SupersetSource(StatefulIngestionSourceBase):
platform_name = get_platform_from_sqlalchemy_uri(sqlalchemy_uri)
if platform_name == "awsathena":
return "athena"
if platform_name == "clickhousedb":
return "clickhouse"
return platform_name
@lru_cache(maxsize=None)