We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d9dc6a commit 15dad78Copy full SHA for 15dad78
bigframes/core/nodes.py
@@ -822,8 +822,10 @@ def explicitly_ordered(self) -> bool:
822
@property
823
def is_star_selection(self) -> bool:
824
physical_names = tuple(item.name for item in self.source.table.physical_schema)
825
- scan_names = tuple(item.source_id for item in self.scan_list.items)
826
- return physical_names == scan_names
+ scan_source_id = tuple(item.source_id for item in self.scan_list.items)
+ scan_id = tuple(item.id.name for item in self.scan_list.items)
827
+
828
+ return scan_source_id == scan_id and physical_names == scan_source_id
829
830
@functools.cached_property
831
def variables_introduced(self) -> int:
0 commit comments