(self)
| 7305 | self.assert_compile(stmt, expected) |
| 7306 | |
| 7307 | def test_alias(self): |
| 7308 | a = alias(table4, "remtable") |
| 7309 | self.assert_compile( |
| 7310 | a.select().where(a.c.datatype_id == 7), |
| 7311 | "SELECT remtable.rem_id, remtable.datatype_id, " |
| 7312 | "remtable.value FROM" |
| 7313 | " remote_owner.remotetable AS remtable " |
| 7314 | "WHERE remtable.datatype_id = :datatype_id_1", |
| 7315 | ) |
| 7316 | |
| 7317 | def test_update(self): |
| 7318 | self.assert_compile( |
nothing calls this directly
no test coverage detected