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 d32d8d2 commit edd54c9Copy full SHA for edd54c9
bigframes/core/compile/sqlglot/compiler.py
@@ -254,11 +254,11 @@ def compile_isin_join(
254
) -> ir.SQLGlotIR:
255
conditions = (
256
typed_expr.TypedExpr(
257
- scalar_compiler.compile_scalar_expression(node.left_col),
+ scalar_compiler.scalar_op_compiler.compile_expression(node.left_col),
258
node.left_col.output_type,
259
),
260
261
- scalar_compiler.compile_scalar_expression(node.right_col),
+ scalar_compiler.scalar_op_compiler.compile_expression(node.right_col),
262
node.right_col.output_type,
263
264
)
0 commit comments