(self)
| 859 | |
| 860 | @testing.requires.standalone_binds |
| 861 | def test_select_columns(self): |
| 862 | stmt = select(bindparam("data"), bindparam("x")) |
| 863 | self._assert_raises(stmt, {"data": "data"}) |
| 864 | |
| 865 | def test_text(self): |
| 866 | stmt = text("select * from foo where x=:x and data=:data1") |
nothing calls this directly
no test coverage detected