(self, other: Table[TSchema])
| 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 |
no test coverage detected