precede source table name before pbi table name (#22902)

This commit is contained in:
harshsoni2024 2025-08-13 09:59:08 +05:30 committed by GitHub
parent 22be97b7d9
commit 2ceffa3e5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -866,7 +866,7 @@ class PowerbiSource(DashboardServiceSource):
try:
table_info = self._parse_table_info_from_source_exp(table, datamodel_entity)
table_name = table.name or table_info.get("table")
table_name = table_info.get("table") or table.name
schema_name = table_info.get("schema")
database_name = table_info.get("database")
if (