schangxiang@126.com
2025-09-19 0821aa23eabe557c0d9ef5dbe6989c68be35d1fe
1
{"version":3,"sources":["../browser/src/error/OffsetWithoutLimitNotSupportedError.ts"],"names":[],"mappings":";AAAA;;EAEE;AACF;IAAyD,+DAAK;IAG1D,6CAAY,UAAkB;QAA9B,YACI,iBAAO,SAGV;QAND,UAAI,GAAG,qCAAqC,CAAC;QAIzC,MAAM,CAAC,cAAc,CAAC,KAAI,EAAE,mCAAmC,CAAC,SAAS,CAAC,CAAC;QAC3E,KAAI,CAAC,OAAO,GAAM,UAAU,iMAA8L,CAAC;;IAC/N,CAAC;IAEL,0CAAC;AAAD,CATA,AASC,CATwD,KAAK,GAS7D","file":"OffsetWithoutLimitNotSupportedError.js","sourcesContent":["/**\n * Thrown when user tries to build SELECT query using OFFSET without LIMIT applied but database does not support it.\n*/\nexport class OffsetWithoutLimitNotSupportedError extends Error {\n    name = \"OffsetWithoutLimitNotSupportedError\";\n\n    constructor(driverName: string) {\n        super();\n        Object.setPrototypeOf(this, OffsetWithoutLimitNotSupportedError.prototype);\n        this.message = `${driverName} does not support OFFSET without LIMIT in SELECT statements. You must use limit in conjunction with offset function (or take in conjunction with skip function if you are using pagination).`;\n    }\n\n}"],"sourceRoot":".."}