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

Function _check_work_done

python/pathway/internals/sql/processing.py:641–649  ·  view source on GitHub ↗
(node: sql_expr.Expression)

Source from the content-addressed store, hash-verified

639
640
641def _check_work_done(node: sql_expr.Expression) -> None:
642 for key, obj in node.args.items():
643 if obj is None:
644 continue
645 try:
646 repr = obj.sql()
647 except AttributeError:
648 repr = str(obj)
649 raise NotImplementedError(f"{key}: {repr} not supported.")

Callers 6

_subqueryFunction · 0.85
_tableFunction · 0.85
_unionFunction · 0.85
_intersectFunction · 0.85
_wrapFunction · 0.85
_selectFunction · 0.85

Calls 1

itemsMethod · 0.80

Tested by

no test coverage detected