MCPcopy
hub / github.com/pathwaycom/pathway / _update_rows

Method _update_rows

python/pathway/internals/table.py:1855–1861  ·  view source on GitHub ↗
(self, other: Table[TSchema])

Source from the content-addressed store, hash-verified

1853 @contextualized_operator
1854 @check_arg_types
1855 def _update_rows(self, other: Table[TSchema]) -> Table[TSchema]:
1856 union_ids = (self._id_column, other._id_column)
1857 context = clmn.UpdateRowsContext(
1858 updates={col_name: other._columns[col_name] for col_name in self.keys()},
1859 union_ids=union_ids,
1860 )
1861 return self._table_with_context(context)
1862
1863 @trace_user_frame
1864 @desugar

Callers 1

update_rowsMethod · 0.80

Calls 2

keysMethod · 0.95
_table_with_contextMethod · 0.95

Tested by

no test coverage detected