(condition)
| 726 | |
| 727 | |
| 728 | def rebuild_condition_val(condition): |
| 729 | if condition is None or not DISABLE_VALUE: |
| 730 | return condition |
| 731 | |
| 732 | res = [] |
| 733 | for idx, it in enumerate(condition): |
| 734 | if idx % 2 == 0: |
| 735 | res.append(rebuild_cond_unit_val(it)) |
| 736 | else: |
| 737 | res.append(it) |
| 738 | return res |
| 739 | |
| 740 | |
| 741 | def rebuild_sql_val(sql): |
no test coverage detected