(self, fetch, offset, fetch_kw, exp, params)
| 484 | ), |
| 485 | ) |
| 486 | def test_fetch(self, fetch, offset, fetch_kw, exp, params): |
| 487 | self.assert_compile( |
| 488 | select(1).fetch(fetch, **fetch_kw).offset(offset), |
| 489 | "SELECT 1 " + exp, |
| 490 | checkparams=params, |
| 491 | ) |
| 492 | |
| 493 | def test_fetch_limit_offset_self_group(self): |
| 494 | self.assert_compile( |
nothing calls this directly
no test coverage detected