MCPcopy Index your code
hub / github.com/pathwaycom/pathway / _rec

Function _rec

python/pathway/internals/sql/processing.py:374–380  ·  view source on GitHub ↗
(
                op: sql_expr.And | sql_expr.EQ,
            )

Source from the content-addressed store, hash-verified

372 if (on_field := node.args.pop("on", None)) is not None:
373
374 def _rec(
375 op: sql_expr.And | sql_expr.EQ,
376 ) -> list[expr.ColumnBinaryOpExpression]:
377 if isinstance(op, sql_expr.And):
378 return _rec(op.this) + _rec(op.expression)
379 else:
380 return [_run(op, context)]
381
382 on_all = _rec(on_field)
383

Callers 1

_wrapFunction · 0.85

Calls 1

_runFunction · 0.70

Tested by

no test coverage detected