(self)
| 1261 | ) |
| 1262 | |
| 1263 | def test_aliased_query_col(self): |
| 1264 | A = self._fixture() |
| 1265 | sess = fixture_session() |
| 1266 | self.assert_compile( |
| 1267 | sess.query(aliased(A).value(5)), |
| 1268 | "SELECT foo(a_1.value, :foo_1) + :foo_2 AS anon_1 FROM a AS a_1", |
| 1269 | ) |
| 1270 | |
| 1271 | def test_docstring(self): |
| 1272 | A = self._fixture() |
nothing calls this directly
no test coverage detected