()
| 3523 | ) |
| 3524 | |
| 3525 | def stmt41(): |
| 3526 | stmt = stmt0() |
| 3527 | |
| 3528 | return stmt.on_conflict_do_update( |
| 3529 | constraint=table.primary_key, |
| 3530 | set_=stmt.excluded, |
| 3531 | where=table.c.bar != random.choice(["q", "p", "r", "z"]), |
| 3532 | ) |
| 3533 | |
| 3534 | def stmt42(): |
| 3535 | stmt = stmt0() |
nothing calls this directly
no test coverage detected