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

Function convert_table

python/pathway/tests/test_api.py:73–80  ·  view source on GitHub ↗
(scope, table)

Source from the content-addressed store, hash-verified

71
72
73def convert_table(scope, table):
74 if isinstance(table, api.LegacyTable):
75 new_table = scope.columns_to_table(table.universe, table.columns)
76 return (
77 new_table,
78 [column_path.ColumnPath((i,)) for i in range(len(table.columns))],
79 )
80 raise NotImplementedError()
81
82
83def convert_tables(scope, *tables):

Callers 1

convert_tablesFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected