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

Method _having

python/pathway/internals/table.py:2279–2285  ·  view source on GitHub ↗
(self, indexer: expr.ColumnReference)

Source from the content-addressed store, hash-verified

2277 @contextualized_operator
2278 @check_arg_types
2279 def _having(self, indexer: expr.ColumnReference) -> Table[TSchema]:
2280 context = clmn.HavingContext(
2281 orig_id_column=self._id_column,
2282 key_column=indexer._column,
2283 key_id_column=indexer._table._id_column,
2284 )
2285 return self._table_with_context(context)
2286
2287 @trace_user_frame
2288 @check_arg_types

Callers 3

ixMethod · 0.80
test_havingFunction · 0.80
test_having_2Function · 0.80

Calls 1

_table_with_contextMethod · 0.95

Tested by 2

test_havingFunction · 0.64
test_having_2Function · 0.64