(valid_col_units, from_, kmap)
| 895 | |
| 896 | |
| 897 | def rebuild_from_col(valid_col_units, from_, kmap): |
| 898 | if from_ is None: |
| 899 | return from_ |
| 900 | |
| 901 | from_['table_units'] = [rebuild_table_unit_col(valid_col_units, table_unit, kmap) for table_unit in from_['table_units']] |
| 902 | from_['conds'] = rebuild_condition_col(valid_col_units, from_['conds'], kmap) |
| 903 | return from_ |
| 904 | |
| 905 | |
| 906 | def rebuild_group_by_col(valid_col_units, group_by, kmap): |
no test coverage detected