(self)
| 1262 | __dialect__ = "default" |
| 1263 | |
| 1264 | def test_lazy_clause_o2m(self): |
| 1265 | joincond = self._join_fixture_o2m() |
| 1266 | lazywhere, bind_to_col, equated_columns = joincond.create_lazy_clause() |
| 1267 | self.assert_compile(lazywhere, ":param_1 = rgt.lid") |
| 1268 | |
| 1269 | def test_lazy_clause_o2m_reverse(self): |
| 1270 | joincond = self._join_fixture_o2m() |
nothing calls this directly
no test coverage detected