(self)
| 188 | eq_(stmt.froms, [t1]) |
| 189 | |
| 190 | def test_column(self): |
| 191 | stmt = select(column("x")) |
| 192 | with testing.expect_deprecated( |
| 193 | r"The Select.column\(\) method is deprecated and will be " |
| 194 | "removed in a future release." |
| 195 | ): |
| 196 | stmt = stmt.column(column("q")) |
| 197 | |
| 198 | self.assert_compile(stmt, "SELECT x, q") |
| 199 | |
| 200 | def test_append_column_after_replace_selectable(self): |
| 201 | basesel = select(literal_column("1").label("a")) |
nothing calls this directly
no test coverage detected