()
| 3497 | return stmt.on_conflict_do_nothing(index_elements=["id", "bar"]) |
| 3498 | |
| 3499 | def stmt3(): |
| 3500 | stmt = stmt0() |
| 3501 | return stmt.on_conflict_do_update( |
| 3502 | index_elements=["id"], |
| 3503 | set_={ |
| 3504 | "bar": random.choice(["a", "b", "c"]), |
| 3505 | "baz": random.choice(["d", "e", "f"]), |
| 3506 | }, |
| 3507 | ) |
| 3508 | |
| 3509 | def stmt31(): |
| 3510 | stmt = stmt0() |
nothing calls this directly
no test coverage detected