(self)
| 927 | |
| 928 | @testing.requires.standalone_binds |
| 929 | def test_select_columns(self): |
| 930 | stmt = select(bindparam("data"), bindparam("x")) |
| 931 | self._assert_raises(stmt, {"data": "data"}) |
| 932 | |
| 933 | def test_text(self): |
| 934 | stmt = text("select * from foo where x=:x and data=:data1") |
nothing calls this directly
no test coverage detected