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

Function _create_internal_table

python/pathway/internals/column.py:255–259  ·  view source on GitHub ↗
(columns: Iterable[Column], context: Context)

Source from the content-addressed store, hash-verified

253
254
255def _create_internal_table(columns: Iterable[Column], context: Context) -> Table:
256 from pathway.internals.table import Table
257
258 columns_dict = {f"{i}": column for i, column in enumerate(columns)}
259 return Table(columns_dict, _context=context)
260
261
262@dataclass(eq=False, frozen=True)

Callers 3

intermediate_tablesMethod · 0.85
intermediate_tablesMethod · 0.85
intermediate_tablesMethod · 0.85

Calls 1

TableClass · 0.90

Tested by

no test coverage detected