(valid_col_units, from_, kmap)
| 825 | |
| 826 | |
| 827 | def rebuild_from_col(valid_col_units, from_, kmap): |
| 828 | if from_ is None: |
| 829 | return from_ |
| 830 | |
| 831 | from_['table_units'] = [rebuild_table_unit_col(valid_col_units, table_unit, kmap) for table_unit in from_['table_units']] |
| 832 | from_['conds'] = rebuild_condition_col(valid_col_units, from_['conds'], kmap) |
| 833 | return from_ |
| 834 | |
| 835 | |
| 836 | def rebuild_group_by_col(valid_col_units, group_by, kmap): |
no test coverage detected