()
| 3491 | return stmt.on_conflict_do_nothing(index_elements=["id", "bar"]) |
| 3492 | |
| 3493 | def stmt24(): |
| 3494 | stmt = insert(table).values( |
| 3495 | {"id": 1, "bar": "ab", "baz": "xy"}, |
| 3496 | ) |
| 3497 | return stmt.on_conflict_do_nothing(index_elements=["id", "bar"]) |
| 3498 | |
| 3499 | def stmt3(): |
| 3500 | stmt = stmt0() |
nothing calls this directly
no test coverage detected