Skip to content

Commit edd54c9

Browse files
committed
fix merge conflicts
1 parent d32d8d2 commit edd54c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bigframes/core/compile/sqlglot/compiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,11 +254,11 @@ def compile_isin_join(
254254
) -> ir.SQLGlotIR:
255255
conditions = (
256256
typed_expr.TypedExpr(
257-
scalar_compiler.compile_scalar_expression(node.left_col),
257+
scalar_compiler.scalar_op_compiler.compile_expression(node.left_col),
258258
node.left_col.output_type,
259259
),
260260
typed_expr.TypedExpr(
261-
scalar_compiler.compile_scalar_expression(node.right_col),
261+
scalar_compiler.scalar_op_compiler.compile_expression(node.right_col),
262262
node.right_col.output_type,
263263
),
264264
)

0 commit comments

Comments
 (0)