@prisma/client-engine-runtime 7.1.0-dev.30 → 7.1.0-dev.32
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 +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1441,7 +1441,7 @@ var QueryInterpreter = class _QueryInterpreter {
|
|
|
1441
1441
|
#serializer;
|
|
1442
1442
|
#rawSerializer;
|
|
1443
1443
|
#provider;
|
|
1444
|
-
#
|
|
1444
|
+
#connectionInfo;
|
|
1445
1445
|
constructor({
|
|
1446
1446
|
transactionManager,
|
|
1447
1447
|
placeholderValues,
|
|
@@ -1459,7 +1459,7 @@ var QueryInterpreter = class _QueryInterpreter {
|
|
|
1459
1459
|
this.#serializer = serializer;
|
|
1460
1460
|
this.#rawSerializer = rawSerializer ?? serializer;
|
|
1461
1461
|
this.#provider = provider;
|
|
1462
|
-
this.#
|
|
1462
|
+
this.#connectionInfo = connectionInfo;
|
|
1463
1463
|
}
|
|
1464
1464
|
static forSql(options) {
|
|
1465
1465
|
return new _QueryInterpreter({
|
|
@@ -1673,8 +1673,8 @@ var QueryInterpreter = class _QueryInterpreter {
|
|
|
1673
1673
|
}
|
|
1674
1674
|
}
|
|
1675
1675
|
#maxChunkSize() {
|
|
1676
|
-
if (this.#
|
|
1677
|
-
return this.#
|
|
1676
|
+
if (this.#connectionInfo?.maxBindValues !== void 0) {
|
|
1677
|
+
return this.#connectionInfo.maxBindValues;
|
|
1678
1678
|
}
|
|
1679
1679
|
return this.#providerMaxChunkSize();
|
|
1680
1680
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -1391,7 +1391,7 @@ var QueryInterpreter = class _QueryInterpreter {
|
|
|
1391
1391
|
#serializer;
|
|
1392
1392
|
#rawSerializer;
|
|
1393
1393
|
#provider;
|
|
1394
|
-
#
|
|
1394
|
+
#connectionInfo;
|
|
1395
1395
|
constructor({
|
|
1396
1396
|
transactionManager,
|
|
1397
1397
|
placeholderValues,
|
|
@@ -1409,7 +1409,7 @@ var QueryInterpreter = class _QueryInterpreter {
|
|
|
1409
1409
|
this.#serializer = serializer;
|
|
1410
1410
|
this.#rawSerializer = rawSerializer ?? serializer;
|
|
1411
1411
|
this.#provider = provider;
|
|
1412
|
-
this.#
|
|
1412
|
+
this.#connectionInfo = connectionInfo;
|
|
1413
1413
|
}
|
|
1414
1414
|
static forSql(options) {
|
|
1415
1415
|
return new _QueryInterpreter({
|
|
@@ -1623,8 +1623,8 @@ var QueryInterpreter = class _QueryInterpreter {
|
|
|
1623
1623
|
}
|
|
1624
1624
|
}
|
|
1625
1625
|
#maxChunkSize() {
|
|
1626
|
-
if (this.#
|
|
1627
|
-
return this.#
|
|
1626
|
+
if (this.#connectionInfo?.maxBindValues !== void 0) {
|
|
1627
|
+
return this.#connectionInfo.maxBindValues;
|
|
1628
1628
|
}
|
|
1629
1629
|
return this.#providerMaxChunkSize();
|
|
1630
1630
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/client-engine-runtime",
|
|
3
|
-
"version": "7.1.0-dev.
|
|
3
|
+
"version": "7.1.0-dev.32",
|
|
4
4
|
"description": "This package is intended for Prisma's internal use",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"nanoid": "5.1.5",
|
|
31
31
|
"ulid": "3.0.0",
|
|
32
32
|
"uuid": "11.1.0",
|
|
33
|
-
"@prisma/
|
|
34
|
-
"@prisma/
|
|
35
|
-
"@prisma/
|
|
33
|
+
"@prisma/client-runtime-utils": "7.1.0-dev.32",
|
|
34
|
+
"@prisma/driver-adapter-utils": "7.1.0-dev.32",
|
|
35
|
+
"@prisma/debug": "7.1.0-dev.32"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/jest": "29.5.14",
|