(self)
| 284 | __dialect__ = "default" |
| 285 | |
| 286 | def test_render(self): |
| 287 | t = Table( |
| 288 | "t1", MetaData(), Column("c1", Integer), Column("c2", Integer) |
| 289 | ) |
| 290 | |
| 291 | stmt = select(t).ext(ColumnExpressionExt(t.c.c1, t.c.c2)) |
| 292 | self.assert_compile( |
| 293 | stmt, |
| 294 | "SELECT COLUMN EXPRESSIONS (t1.c1, t1.c2) t1.c1, t1.c2 FROM t1", |
| 295 | ) |
| 296 | |
| 297 | def test_adaptation(self): |
| 298 | t = Table( |
nothing calls this directly
no test coverage detected