(scope, table, column_count)
| 24 | |
| 25 | |
| 26 | def table_to_legacy(scope, table, column_count): |
| 27 | universe = scope.table_universe(table) |
| 28 | return scope.table( |
| 29 | universe, |
| 30 | [ |
| 31 | scope.table_column(universe, table, column_path.ColumnPath((i,))) |
| 32 | for i in range(column_count) |
| 33 | ], |
| 34 | ) |
| 35 | |
| 36 | |
| 37 | def static_table_from_md(scope, txt, ptr_columns=(), legacy=True): |
no test coverage detected