()
| 694 | return stmt.on_conflict_do_nothing(index_elements=["id", "bar"]) |
| 695 | |
| 696 | def stmt24(): |
| 697 | stmt = insert(table).values( |
| 698 | {"id": 1, "bar": "ab", "baz": "xy"}, |
| 699 | ) |
| 700 | return stmt.on_conflict_do_nothing(index_elements=["id", "bar"]) |
| 701 | |
| 702 | def stmt3(): |
| 703 | stmt = stmt0() |
nothing calls this directly
no test coverage detected