Skip to content

Commit

Permalink
feat(ingest/superset): clickhousedb -> clickhouse mapping in superset…
Browse files Browse the repository at this point in the history
… ingestion

Similar to datahub-project#10005
  • Loading branch information
esselius committed Aug 19, 2024
1 parent 0e69817 commit f5ec0ca
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions metadata-ingestion/src/datahub/ingestion/source/superset.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,8 @@ def get_platform_from_database_id(self, database_id):
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)
Expand Down

0 comments on commit f5ec0ca

Please sign in to comment.