(self)
| 1253 | ) |
| 1254 | |
| 1255 | def test_query_col(self): |
| 1256 | A = self._fixture() |
| 1257 | sess = fixture_session() |
| 1258 | self.assert_compile( |
| 1259 | sess.query(A.value(5)), |
| 1260 | "SELECT foo(a.value, :foo_1) + :foo_2 AS anon_1 FROM a", |
| 1261 | ) |
| 1262 | |
| 1263 | def test_aliased_query_col(self): |
| 1264 | A = self._fixture() |
nothing calls this directly
no test coverage detected