We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71fa69d commit cf3b7e3Copy full SHA for cf3b7e3
bigframes/core/nodes.py
@@ -753,6 +753,11 @@ class ReadTableNode(LeafNode):
753
754
table_session: bigframes.session.Session = dataclasses.field()
755
756
+ # DELETE BEFORE SUBMITTING, DEBUG ONLY
757
+ def __post_init__(self):
758
+ for item in self.scan_list.items:
759
+ assert item.source_id in self.source.schema.names
760
+
761
def _validate(self):
762
# enforce invariants
763
physical_names = set(map(lambda i: i.name, self.source.table.physical_schema))
0 commit comments