Skip to content

Commit

Permalink
fix(ingest/tableau) Fix Tableau lineage ingestion from Clickhouse (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
valeral authored Apr 1, 2024
1 parent 6aa6a8f commit 3e39129
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ def get_fully_qualified_table_name(
.replace("`", "")
)

if platform in ("athena", "hive", "mysql"):
if platform in ("athena", "hive", "mysql", "clickhouse"):
# it two tier database system (athena, hive, mysql), just take final 2
fully_qualified_table_name = ".".join(
fully_qualified_table_name.split(".")[-2:]
Expand Down

0 comments on commit 3e39129

Please sign in to comment.