(self)
| 56 | ) |
| 57 | |
| 58 | def test_select_from(self): |
| 59 | table1 = self.tables.people |
| 60 | |
| 61 | self.assert_compile( |
| 62 | select(table1.tablesample(text("1"), name="alias").c.people_id), |
| 63 | "SELECT alias.people_id FROM " |
| 64 | "people AS alias TABLESAMPLE system(1)", |
| 65 | ) |
| 66 | |
| 67 | def test_no_alias_construct(self): |
| 68 | a = table("a", column("x")) |
nothing calls this directly
no test coverage detected