@prisma/query-plan-executor 7.6.0-dev.4 → 7.6.0-dev.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -3
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -101337,7 +101337,7 @@ __export(index_exports, {
|
|
|
101337
101337
|
module.exports = __toCommonJS(index_exports);
|
|
101338
101338
|
|
|
101339
101339
|
// package.json
|
|
101340
|
-
var version = "7.6.0-dev.
|
|
101340
|
+
var version = "7.6.0-dev.6";
|
|
101341
101341
|
|
|
101342
101342
|
// ../../node_modules/.pnpm/temporal-polyfill@0.3.0/node_modules/temporal-polyfill/chunks/internal.js
|
|
101343
101343
|
function clampProp(e2, n2, t2, o2, r2) {
|
|
@@ -115974,11 +115974,13 @@ function mapDriverError3(error44) {
|
|
|
115974
115974
|
kind: "TableDoesNotExist",
|
|
115975
115975
|
table: error44.message.split(" ").at(1)?.split('"').at(1)
|
|
115976
115976
|
};
|
|
115977
|
-
case "42703":
|
|
115977
|
+
case "42703": {
|
|
115978
|
+
const rawColumn = error44.message.match(/^column (.+) does not exist$/)?.at(1);
|
|
115978
115979
|
return {
|
|
115979
115980
|
kind: "ColumnNotFound",
|
|
115980
|
-
column:
|
|
115981
|
+
column: rawColumn?.replace(/"((?:""|[^"])*)"/g, (_3, id) => id.replaceAll('""', '"'))
|
|
115981
115982
|
};
|
|
115983
|
+
}
|
|
115982
115984
|
case "42P04":
|
|
115983
115985
|
return {
|
|
115984
115986
|
kind: "DatabaseAlreadyExists",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/query-plan-executor",
|
|
3
|
-
"version": "7.6.0-dev.
|
|
3
|
+
"version": "7.6.0-dev.6",
|
|
4
4
|
"description": "This package is intended for Prisma's internal use",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"hono": "4.11.7",
|
|
20
20
|
"temporal-polyfill": "0.3.0",
|
|
21
21
|
"zod": "4.1.3",
|
|
22
|
-
"@prisma/adapter-pg": "7.6.0-dev.
|
|
23
|
-
"@prisma/adapter-mariadb": "7.6.0-dev.
|
|
24
|
-
"@prisma/adapter-mssql": "7.6.0-dev.
|
|
25
|
-
"@prisma/client-engine-runtime": "7.6.0-dev.
|
|
26
|
-
"@prisma/driver-adapter-utils": "7.6.0-dev.
|
|
22
|
+
"@prisma/adapter-pg": "7.6.0-dev.6",
|
|
23
|
+
"@prisma/adapter-mariadb": "7.6.0-dev.6",
|
|
24
|
+
"@prisma/adapter-mssql": "7.6.0-dev.6",
|
|
25
|
+
"@prisma/client-engine-runtime": "7.6.0-dev.6",
|
|
26
|
+
"@prisma/driver-adapter-utils": "7.6.0-dev.6"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
29
|
"dist"
|