fix(ingest): add tableau sqlglot dep (#8552)

This commit is contained in:
Harshal Sheth 2023-08-02 11:18:06 -07:00 committed by GitHub
parent d6263a6c0c
commit 3428bcaaad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -368,15 +368,15 @@ plugins: Dict[str, Set[str]] = {
"great_expectations",
"greenlet",
},
"tableau": {"tableauserverclient>=0.17.0"} | sqllineage_lib,
# FIXME: I don't think tableau uses sqllineage anymore so we should be able
# to remove that dependency.
"tableau": {"tableauserverclient>=0.17.0"} | sqllineage_lib | sqlglot_lib,
"trino": sql_common | trino,
"starburst-trino-usage": sql_common | usage_common | trino,
"nifi": {"requests", "packaging", "requests-gssapi"},
"powerbi": microsoft_common | {"lark[regex]==1.1.4", "sqlparse"},
"powerbi-report-server": powerbi_report_server,
"vertica": sql_common | {"vertica-sqlalchemy-dialect[vertica-python]==0.0.8"},
"unity-catalog": databricks | sqllineage_lib,
}