(self)
| 2581 | return cls(_columns=columns, _schema=schema, _context=context) |
| 2582 | |
| 2583 | def __repr__(self) -> str: |
| 2584 | id_dtype = self._id_column.dtype |
| 2585 | if id_dtype == dt.ANY_POINTER: |
| 2586 | return f"<pathway.Table schema={dict(self.typehints())}>" |
| 2587 | else: |
| 2588 | return f"<pathway.Table schema={dict(self.typehints())} id_type={id_dtype.typehint}>" |
| 2589 | |
| 2590 | def _with_same_universe( |
| 2591 | self, |