@prisma/query-plan-executor 7.9.0-dev.29 → 7.9.0-dev.30
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 +13 -16
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -93473,7 +93473,7 @@ __export(index_exports, {
|
|
|
93473
93473
|
module.exports = __toCommonJS(index_exports);
|
|
93474
93474
|
|
|
93475
93475
|
// package.json
|
|
93476
|
-
var version = "7.9.0-dev.
|
|
93476
|
+
var version = "7.9.0-dev.30";
|
|
93477
93477
|
|
|
93478
93478
|
// ../../node_modules/.pnpm/temporal-polyfill@0.3.0/node_modules/temporal-polyfill/chunks/internal.js
|
|
93479
93479
|
function clampProp(e2, n2, t2, o2, r2) {
|
|
@@ -108215,23 +108215,20 @@ var PgQueryable = class {
|
|
|
108215
108215
|
const { sql: sql4, args } = query2;
|
|
108216
108216
|
const values = args.map((arg, i2) => mapArg3(arg, query2.argTypes[i2]));
|
|
108217
108217
|
try {
|
|
108218
|
-
const result = await this.client.query(
|
|
108219
|
-
|
|
108220
|
-
|
|
108221
|
-
|
|
108222
|
-
|
|
108223
|
-
|
|
108224
|
-
|
|
108225
|
-
|
|
108226
|
-
|
|
108227
|
-
return customParsers[oid];
|
|
108228
|
-
}
|
|
108229
|
-
return types22.getTypeParser(oid, format);
|
|
108218
|
+
const result = await this.client.query({
|
|
108219
|
+
name: this.pgOptions?.statementNameGenerator?.(query2),
|
|
108220
|
+
text: sql4,
|
|
108221
|
+
values,
|
|
108222
|
+
rowMode: "array",
|
|
108223
|
+
types: {
|
|
108224
|
+
getTypeParser: (oid, format) => {
|
|
108225
|
+
if (format === "text" && customParsers[oid]) {
|
|
108226
|
+
return customParsers[oid];
|
|
108230
108227
|
}
|
|
108228
|
+
return types22.getTypeParser(oid, format);
|
|
108231
108229
|
}
|
|
108232
|
-
}
|
|
108233
|
-
|
|
108234
|
-
);
|
|
108230
|
+
}
|
|
108231
|
+
});
|
|
108235
108232
|
return result;
|
|
108236
108233
|
} catch (e2) {
|
|
108237
108234
|
this.onError(e2);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/query-plan-executor",
|
|
3
|
-
"version": "7.9.0-dev.
|
|
3
|
+
"version": "7.9.0-dev.30",
|
|
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.12.23",
|
|
20
20
|
"temporal-polyfill": "0.3.0",
|
|
21
21
|
"zod": "4.1.3",
|
|
22
|
-
"@prisma/adapter-pg": "7.9.0-dev.
|
|
23
|
-
"@prisma/adapter-mariadb": "7.9.0-dev.
|
|
24
|
-
"@prisma/client-engine-runtime": "7.9.0-dev.
|
|
25
|
-
"@prisma/adapter-
|
|
26
|
-
"@prisma/
|
|
22
|
+
"@prisma/adapter-pg": "7.9.0-dev.30",
|
|
23
|
+
"@prisma/adapter-mariadb": "7.9.0-dev.30",
|
|
24
|
+
"@prisma/client-engine-runtime": "7.9.0-dev.30",
|
|
25
|
+
"@prisma/driver-adapter-utils": "7.9.0-dev.30",
|
|
26
|
+
"@prisma/adapter-mssql": "7.9.0-dev.30"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
29
|
"dist"
|