in lib/common/utils/statementBuilder.util.ts [165:171]
7 lines of code
3 McCabe index (conditional complexity)
private validateQuery(): void {
if (!this._limit && this._offset) {
throw new InvalidOperationException(
"OFFSET cannot be set if LIMIT is not set.",
);
}
}