File tree Expand file tree Collapse file tree 4 files changed +12
-47
lines changed
Expand file tree Collapse file tree 4 files changed +12
-47
lines changed Original file line number Diff line number Diff line change 2323import ibis .expr .types as ibis_types
2424
2525import bigframes .core .compile .compiled as compiled
26+ import bigframes .core .guid as guids
2627import bigframes .core .join_def as join_defs
27- import bigframes .core .joins as joining
2828import bigframes .core .ordering as orderings
2929
3030
@@ -50,9 +50,13 @@ def join_by_column_ordered(
5050 finally, all the right columns.
5151 """
5252
53- l_hidden_mapping , r_hidden_mapping = joining .JoinNameRemapper (namespace = "hidden" )(
54- left ._hidden_column_ids , right ._hidden_column_ids
55- )
53+ l_hidden_mapping = {
54+ id : guids .generate_guid ("hidden_" ) for id in left ._hidden_column_ids
55+ }
56+ r_hidden_mapping = {
57+ id : guids .generate_guid ("hidden_" ) for id in right ._hidden_column_ids
58+ }
59+
5660 l_mapping = {** join .get_left_mapping (), ** l_hidden_mapping }
5761 r_mapping = {** join .get_right_mapping (), ** r_hidden_mapping }
5862
Original file line number Diff line number Diff line change 1515"""Helpers to join ArrayValue objects."""
1616
1717from bigframes .core .joins .merge import merge
18- from bigframes .core .joins .name_resolution import JoinNameRemapper
1918
20- __all__ = ("merge" , "JoinNameRemapper" )
19+ __all__ = [
20+ "merge" ,
21+ ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5959import bigframes .core .expression as ex
6060import bigframes .core .global_session as global_session
6161import bigframes .core .indexes
62+ import bigframes .core .joins
6263import bigframes .core .reshape
6364import bigframes .core .tools
6465import bigframes .dataframe
You can’t perform that action at this time.
0 commit comments