• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

typeorm / typeorm / 13626058287

03 Mar 2025 08:02AM UTC coverage: 72.374% (+0.003%) from 72.371%
13626058287

push

github

web-flow
chore: Bump version 0.3.21 (#11314)

8657 of 12650 branches covered (68.43%)

Branch coverage included in aggregate %.

17894 of 24036 relevant lines covered (74.45%)

148196.66 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

66.67
/src/error/OffsetWithoutLimitNotSupportedError.ts
1
import { TypeORMError } from "./TypeORMError"
36✔
2

3
/**
4
 * Thrown when user tries to build SELECT query using OFFSET without LIMIT applied but database does not support it.
5
 */
6
export class OffsetWithoutLimitNotSupportedError extends TypeORMError {
36✔
7
    constructor() {
8
        super(
×
9
            `RDBMS does not support OFFSET without LIMIT in SELECT statements. You must use limit in ` +
10
                `conjunction with offset function (or take in conjunction with skip function if you are ` +
11
                `using pagination).`,
12
        )
13
    }
14
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc