(self, lim, offset, exp, params)
| 404 | ), |
| 405 | ) |
| 406 | def test_limit_offset(self, lim, offset, exp, params): |
| 407 | self.assert_compile( |
| 408 | select(1).limit(lim).offset(offset), |
| 409 | "SELECT 1 " + exp, |
| 410 | checkparams=params, |
| 411 | ) |
| 412 | |
| 413 | @testing.combinations( |
| 414 | ( |
nothing calls this directly
no test coverage detected