Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion superset/models/slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,15 @@ def datasource_url(self) -> Optional[str]:
def datasource_name_text(self) -> Optional[str]:
# pylint: disable=no-member
if self.table:
if self.table.schema:
return f"{self.table.schema}.{self.table.table_name}"
return self.table.table_name
datasource = self.datasource

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

any reason why we have this here if we're not handling self.table the same way?

I don't really care which we do, but let's be consistent (either table and datasource or self.table and self.datasource)

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks like most methods in this model share this inconsistency 😕

return datasource.name if datasource else None
if datasource:
if datasource.schema:
return f"{datasource.schema}.{datasource.name}"
return datasource.name
return None

@property
def datasource_edit_url(self) -> Optional[str]:
Expand Down