diff --git a/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py b/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py index aa7db2a281fbc3..74e9759e97c4fa 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py +++ b/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py @@ -465,7 +465,7 @@ def get_fully_qualified_table_name( # do some final adjustments on the fully qualified table name to help them line up with source systems: # lowercase it fully_qualified_table_name = fully_qualified_table_name.lower() - # strip double quotes and escaped double quotes + # strip double quotes, escaped double quotes and backticks fully_qualified_table_name = ( fully_qualified_table_name.replace('\\"', "") .replace('"', "")