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

typeorm / typeorm / 23390157208

21 Mar 2026 10:26PM UTC coverage: 56.678% (-16.6%) from 73.277%
23390157208

Pull #12252

github

web-flow
Merge 5b60ba41c into 7038fa166
Pull Request #12252: fix: unskip cascade soft remove test

17767 of 26580 branches covered (66.84%)

Branch coverage included in aggregate %.

64033 of 117744 relevant lines covered (54.38%)

1514.83 hits per line

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

57.14
/src/error/OffsetWithoutLimitNotSupportedError.ts
1
import { TypeORMError } from "./TypeORMError"
28✔
2

28✔
3
/**
28✔
4
 * Thrown when user tries to build SELECT query using OFFSET without LIMIT applied but database does not support it.
28✔
5
 */
28✔
6
export class OffsetWithoutLimitNotSupportedError extends TypeORMError {
28✔
7
    constructor() {
28✔
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
}
28✔
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