(self)
| 75 | |
| 76 | @testing.fixture |
| 77 | def _auto_proxy_fixture(self): |
| 78 | c1 = column("q", Integer) |
| 79 | c2 = column("p", Integer) |
| 80 | t = table("t", c1) # noqa: F841 |
| 81 | |
| 82 | v1 = values(c1, c2).data([(1, 2), (3, 4)]) |
| 83 | |
| 84 | return c1, c2, t, v1 |
| 85 | |
| 86 | def test_auto_proxy_col_ownership(self, _auto_proxy_fixture): |
| 87 | """test #10280""" |