(conds)
| 604 | |
| 605 | |
| 606 | def condition_has_sql(conds): |
| 607 | for cond_unit in conds[::2]: |
| 608 | val1, val2 = cond_unit[3], cond_unit[4] |
| 609 | if val1 is not None and type(val1) is dict: |
| 610 | return True |
| 611 | if val2 is not None and type(val2) is dict: |
| 612 | return True |
| 613 | return False |
| 614 | |
| 615 | |
| 616 | def val_has_op(val_unit): |
nothing calls this directly
no outgoing calls
no test coverage detected