(self)
| 307 | eq_(stmt.froms, [t1]) |
| 308 | |
| 309 | def test_column(self): |
| 310 | stmt = select(column("x")) |
| 311 | with testing.expect_deprecated( |
| 312 | r"The Select.column\(\) method is deprecated and will be " |
| 313 | "removed in a future release." |
| 314 | ): |
| 315 | stmt = stmt.column(column("q")) |
| 316 | |
| 317 | self.assert_compile(stmt, "SELECT x, q") |
| 318 | |
| 319 | def test_append_column_after_replace_selectable(self): |
| 320 | basesel = select(literal_column("1").label("a")) |
nothing calls this directly
no test coverage detected