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

typeorm / typeorm / 13979653712

20 Mar 2025 09:24PM UTC coverage: 72.355% (+0.003%) from 72.352%
13979653712

push

github

web-flow
fix: ensure correct MSSQL parameter conversion in where conditions

Fixes input parameter conversion in SelectQueryBuilder when using an MSSQL connection.

Closes #11285

8661 of 12658 branches covered (68.42%)

Branch coverage included in aggregate %.

7 of 8 new or added lines in 1 file covered. (87.5%)

2 existing lines in 2 files now uncovered.

17884 of 24029 relevant lines covered (74.43%)

159338.06 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() {
UNCOV
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