feat(tableau): add support for Google BigQuery connection type in pla… (#14080)

This commit is contained in:
Brock Griffey 2025-07-16 07:48:52 -04:00 committed by GitHub
parent 6c82d70642
commit b1c3d33235
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -579,10 +579,12 @@ def get_platform(connection_type: str) -> str:
platform = "oracle"
elif connection_type in ("tbio", "teradata"):
platform = "teradata"
elif connection_type in ("sqlserver"):
elif connection_type in ("sqlserver",):
platform = "mssql"
elif connection_type in ("athena"):
elif connection_type in ("athena",):
platform = "athena"
elif connection_type in ("googlebigquery",):
platform = "bigquery"
elif connection_type.endswith("_jdbc"):
# e.g. convert trino_jdbc -> trino
platform = connection_type[: -len("_jdbc")]