()
| 3507 | ) |
| 3508 | |
| 3509 | def stmt31(): |
| 3510 | stmt = stmt0() |
| 3511 | return stmt.on_conflict_do_update( |
| 3512 | index_elements=["id"], |
| 3513 | set_={ |
| 3514 | "baz": random.choice(["d", "e", "f"]), |
| 3515 | }, |
| 3516 | ) |
| 3517 | |
| 3518 | def stmt4(): |
| 3519 | stmt = stmt0() |
nothing calls this directly
no test coverage detected