()
| 822 | ) |
| 823 | |
| 824 | def stmt15(): |
| 825 | stmt = insert(table).values( |
| 826 | {"id": 1}, |
| 827 | ) |
| 828 | return stmt.on_duplicate_key_update( |
| 829 | bar=stmt.inserted.bar, baz=stmt.inserted.baz |
| 830 | ) |
| 831 | |
| 832 | def stmt2(): |
| 833 | stmt = stmt0() |
nothing calls this directly
no test coverage detected