(conds)
| 64 | |
| 65 | |
| 66 | def condition_has_sql(conds): |
| 67 | for cond_unit in conds[::2]: |
| 68 | val1, val2 = cond_unit[3], cond_unit[4] |
| 69 | if val1 is not None and type(val1) is dict: |
| 70 | return True |
| 71 | if val2 is not None and type(val2) is dict: |
| 72 | return True |
| 73 | return False |
| 74 | |
| 75 | |
| 76 | def val_has_op(val_unit): |
nothing calls this directly
no outgoing calls
no test coverage detected