(self)
| 107 | ) |
| 108 | |
| 109 | def test_alias(self): |
| 110 | table1 = self.tables.mytable |
| 111 | |
| 112 | talias1 = table1.alias("t1") |
| 113 | stmt = delete(talias1).where(talias1.c.myid == 7) |
| 114 | |
| 115 | self.assert_compile( |
| 116 | stmt, "DELETE FROM mytable AS t1 WHERE t1.myid = :myid_1" |
| 117 | ) |
| 118 | |
| 119 | def test_non_correlated_select(self): |
| 120 | table1, table2 = self.tables.mytable, self.tables.myothertable |
nothing calls this directly
no test coverage detected