(valid_col_units, table_unit, kmap)
| 786 | |
| 787 | |
| 788 | def rebuild_table_unit_col(valid_col_units, table_unit, kmap): |
| 789 | if table_unit is None: |
| 790 | return table_unit |
| 791 | |
| 792 | table_type, col_unit_or_sql = table_unit |
| 793 | if isinstance(col_unit_or_sql, tuple): |
| 794 | col_unit_or_sql = rebuild_col_unit_col(valid_col_units, col_unit_or_sql, kmap) |
| 795 | return table_type, col_unit_or_sql |
| 796 | |
| 797 | |
| 798 | def rebuild_cond_unit_col(valid_col_units, cond_unit, kmap): |
no test coverage detected