(condition)
| 796 | |
| 797 | |
| 798 | def rebuild_condition_val(condition): |
| 799 | if condition is None or not DISABLE_VALUE: |
| 800 | return condition |
| 801 | |
| 802 | res = [] |
| 803 | for idx, it in enumerate(condition): |
| 804 | if idx % 2 == 0: |
| 805 | res.append(rebuild_cond_unit_val(it)) |
| 806 | else: |
| 807 | res.append(it) |
| 808 | return res |
| 809 | |
| 810 | |
| 811 | def rebuild_sql_val(sql): |
no test coverage detected