(self, expand_update, keytype)
| 1855 | |
| 1856 | @testing.variation("keytype", ["attr", "string"]) |
| 1857 | def test_expand_update_update_values(self, expand_update, keytype): |
| 1858 | A = expand_update |
| 1859 | self.assert_compile( |
| 1860 | update(A).values({"xy" if keytype.string else A.xy: Point(5, 6)}), |
| 1861 | "UPDATE a SET x=:x, y=:y", |
| 1862 | checkparams={"x": 5, "y": 6}, |
| 1863 | ) |
| 1864 | |
| 1865 | ##################################################### |
| 1866 |
nothing calls this directly
no test coverage detected