()
| 3532 | ) |
| 3533 | |
| 3534 | def stmt42(): |
| 3535 | stmt = stmt0() |
| 3536 | |
| 3537 | return stmt.on_conflict_do_update( |
| 3538 | constraint=table.primary_key, |
| 3539 | set_=stmt.excluded, |
| 3540 | where=table.c.baz != random.choice(["q", "p", "r", "z"]), |
| 3541 | ) |
| 3542 | |
| 3543 | return lambda: [ |
| 3544 | stmt0(), |
nothing calls this directly
no test coverage detected