Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 2489eb8

Browse files
committed
address comments
1 parent 5911773 commit 2489eb8

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

bigframes/core/rewrite/identifiers.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -76,20 +76,14 @@ def remap_variables(
7676
new_root = typing.cast(nodes.InNode, new_root)
7777
new_root = dataclasses.replace(
7878
new_root,
79-
left_col=new_root.left_col.remap_column_refs(
80-
new_child_mappings[0], allow_partial_bindings=True
81-
),
79+
left_col=new_root.left_col.remap_column_refs(new_child_mappings[0]),
8280
)
8381
elif isinstance(new_root, nodes.JoinNode):
8482
new_root = typing.cast(nodes.JoinNode, new_root)
8583
new_conds = tuple(
8684
(
87-
l_cond.remap_column_refs(
88-
new_child_mappings[0], allow_partial_bindings=True
89-
),
90-
r_cond.remap_column_refs(
91-
new_child_mappings[1], allow_partial_bindings=True
92-
),
85+
l_cond.remap_column_refs(new_child_mappings[0]),
86+
r_cond.remap_column_refs(new_child_mappings[1]),
9387
)
9488
for l_cond, r_cond in new_root.conditions
9589
)

0 commit comments

Comments
 (0)