(self)
| 1222 | ) |
| 1223 | |
| 1224 | def test_getindex_sqlexpr(self): |
| 1225 | col = Column("x", self.MyType()) |
| 1226 | col2 = Column("y", Integer()) |
| 1227 | |
| 1228 | self.assert_compile(col[col2], "x -> y", checkparams={}) |
| 1229 | |
| 1230 | def test_getindex_sqlexpr_right_grouping(self): |
| 1231 | col = Column("x", self.MyType()) |
nothing calls this directly
no test coverage detected