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