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

typeorm / typeorm / 13816784002

12 Mar 2025 04:40PM UTC coverage: 72.34% (-0.003%) from 72.343%
13816784002

push

github

web-flow
test: rename tests to better describe the case (#11280)

Fixes #10863

8653 of 12653 branches covered (68.39%)

Branch coverage included in aggregate %.

17877 of 24021 relevant lines covered (74.42%)

147936.09 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"
27✔
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 {
27✔
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