()
| 486 | |
| 487 | export class LimitOffsetRequireOrderByError extends QueryCompilationError { |
| 488 | constructor() { |
| 489 | super( |
| 490 | `LIMIT and OFFSET require an ORDER BY clause to ensure deterministic results`, |
| 491 | ) |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected