()
| 3481 | return stmt.on_conflict_do_nothing(index_elements=[table.c.id]) |
| 3482 | |
| 3483 | def stmt22(): |
| 3484 | stmt = stmt0() |
| 3485 | return stmt.on_conflict_do_nothing( |
| 3486 | index_elements=["id", table.c.bar] |
| 3487 | ) |
| 3488 | |
| 3489 | def stmt23(): |
| 3490 | stmt = stmt0() |
nothing calls this directly
no test coverage detected