@prisma/query-plan-executor 6.16.0-integration-push-prynymnkvlrn.3 → 6.16.0-integration-feat-prisma-client-default-runtime.2
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 +376 -213
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -658,15 +658,25 @@ var require_cuid2 = __commonJS({
|
|
|
658
658
|
}
|
|
659
659
|
});
|
|
660
660
|
|
|
661
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
661
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/package.json
|
|
662
662
|
var require_package = __commonJS({
|
|
663
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
663
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/package.json"(exports2, module2) {
|
|
664
664
|
module2.exports = {
|
|
665
665
|
name: "mariadb",
|
|
666
|
-
version: "3.4.
|
|
666
|
+
version: "3.4.5",
|
|
667
667
|
description: "fast mariadb or mysql connector.",
|
|
668
668
|
main: "promise.js",
|
|
669
669
|
types: "types/index.d.ts",
|
|
670
|
+
typesVersions: {
|
|
671
|
+
"*": {
|
|
672
|
+
callback: [
|
|
673
|
+
"types/callback.d.ts"
|
|
674
|
+
],
|
|
675
|
+
"*": [
|
|
676
|
+
"types/index.d.ts"
|
|
677
|
+
]
|
|
678
|
+
}
|
|
679
|
+
},
|
|
670
680
|
directories: {
|
|
671
681
|
lib: "lib",
|
|
672
682
|
test: "test"
|
|
@@ -674,9 +684,9 @@ var require_package = __commonJS({
|
|
|
674
684
|
private: false,
|
|
675
685
|
scripts: {
|
|
676
686
|
test: "npm run test:types-prettier && npm run test:prettier && npm run test:types && npm run test:lint && npm run test:base",
|
|
677
|
-
"test:base": 'mocha --no-parallel --timeout 5000 "test/**/*.js"
|
|
678
|
-
"test:lint": 'eslint "*.js" "{lib,test}/**/*.js"
|
|
679
|
-
"test:types": 'eslint "types/*.ts"
|
|
687
|
+
"test:base": 'mocha --no-parallel --timeout 5000 "test/**/*.js"',
|
|
688
|
+
"test:lint": 'eslint "*.js" "{lib,test}/**/*.js"',
|
|
689
|
+
"test:types": 'eslint "types/*.ts"',
|
|
680
690
|
"test:types-prettier": 'prettier --write "types/*.ts"',
|
|
681
691
|
"test:prettier": 'prettier --write "*.js" "{tools,lib,test,benchmarks}/**/*.js"',
|
|
682
692
|
coverage: "npm run coverage:test && npm run coverage:create && npm run coverage:send",
|
|
@@ -701,6 +711,8 @@ var require_package = __commonJS({
|
|
|
701
711
|
files: [
|
|
702
712
|
"lib",
|
|
703
713
|
"types/index.d.ts",
|
|
714
|
+
"types/callback.d.ts",
|
|
715
|
+
"types/share.d.ts",
|
|
704
716
|
"promise.js",
|
|
705
717
|
"check-node.js",
|
|
706
718
|
"callback.js"
|
|
@@ -711,29 +723,29 @@ var require_package = __commonJS({
|
|
|
711
723
|
author: "Diego Dupin <diego.dupin@mariadb.com>",
|
|
712
724
|
license: "LGPL-2.1-or-later",
|
|
713
725
|
dependencies: {
|
|
714
|
-
"@types/geojson": "^7946.0.
|
|
715
|
-
"@types/node": "^
|
|
726
|
+
"@types/geojson": "^7946.0.16",
|
|
727
|
+
"@types/node": "^24.0.13",
|
|
716
728
|
denque: "^2.1.0",
|
|
717
729
|
"iconv-lite": "^0.6.3",
|
|
718
|
-
"lru-cache": "^10.3
|
|
730
|
+
"lru-cache": "^10.4.3"
|
|
719
731
|
},
|
|
720
732
|
devDependencies: {
|
|
721
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
722
|
-
"@typescript-eslint/parser": "^
|
|
733
|
+
"@typescript-eslint/eslint-plugin": "^8.36.0",
|
|
734
|
+
"@typescript-eslint/parser": "^8.36.0",
|
|
723
735
|
benchmark: "^2.1.4",
|
|
724
|
-
chai: "^4.
|
|
725
|
-
chalk: "^4.1
|
|
736
|
+
chai: "^4.5.0",
|
|
737
|
+
chalk: "^5.4.1",
|
|
726
738
|
"error-stack-parser": "^2.1.4",
|
|
727
|
-
eslint: "^8.
|
|
728
|
-
"eslint-config-prettier": "^
|
|
729
|
-
"eslint-plugin-markdown": "^
|
|
730
|
-
"eslint-plugin-prettier": "^5.
|
|
731
|
-
mocha: "^
|
|
739
|
+
eslint: "^8.57.1",
|
|
740
|
+
"eslint-config-prettier": "^10.1.5",
|
|
741
|
+
"eslint-plugin-markdown": "^5.1.0",
|
|
742
|
+
"eslint-plugin-prettier": "^5.5.1",
|
|
743
|
+
mocha: "^11.7.1",
|
|
732
744
|
"mocha-lcov-reporter": "^1.3.0",
|
|
733
|
-
nyc: "^
|
|
734
|
-
prettier: "^3.
|
|
735
|
-
typescript: "^5.
|
|
736
|
-
winston: "^3.
|
|
745
|
+
nyc: "^17.1.0",
|
|
746
|
+
prettier: "^3.6.2",
|
|
747
|
+
typescript: "^5.8.3",
|
|
748
|
+
winston: "^3.17.0"
|
|
737
749
|
},
|
|
738
750
|
bugs: {
|
|
739
751
|
url: "https://jira.mariadb.org/projects/CONJS/"
|
|
@@ -743,9 +755,9 @@ var require_package = __commonJS({
|
|
|
743
755
|
}
|
|
744
756
|
});
|
|
745
757
|
|
|
746
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
758
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/check-node.js
|
|
747
759
|
var require_check_node = __commonJS({
|
|
748
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
760
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/check-node.js"(exports2, module2) {
|
|
749
761
|
"use strict";
|
|
750
762
|
var hasMinVersion = function(nodeVersionStr, connectorRequirement2) {
|
|
751
763
|
const versNode = nodeVersionStr.split(".");
|
|
@@ -1085,9 +1097,9 @@ var require_denque = __commonJS({
|
|
|
1085
1097
|
}
|
|
1086
1098
|
});
|
|
1087
1099
|
|
|
1088
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
1100
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/error-code.js
|
|
1089
1101
|
var require_error_code = __commonJS({
|
|
1090
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
1102
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/error-code.js"(exports2, module2) {
|
|
1091
1103
|
"use strict";
|
|
1092
1104
|
var codes = {};
|
|
1093
1105
|
codes[120] = "HA_ERR_KEY_NOT_FOUND";
|
|
@@ -2385,9 +2397,9 @@ var require_error_code = __commonJS({
|
|
|
2385
2397
|
}
|
|
2386
2398
|
});
|
|
2387
2399
|
|
|
2388
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
2400
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/misc/errors.js
|
|
2389
2401
|
var require_errors = __commonJS({
|
|
2390
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
2402
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/misc/errors.js"(exports2, module2) {
|
|
2391
2403
|
"use strict";
|
|
2392
2404
|
var ErrorCodes = require_error_code();
|
|
2393
2405
|
var SqlError = class extends Error {
|
|
@@ -2493,9 +2505,9 @@ var require_errors = __commonJS({
|
|
|
2493
2505
|
}
|
|
2494
2506
|
});
|
|
2495
2507
|
|
|
2496
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
2508
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/packet.js
|
|
2497
2509
|
var require_packet = __commonJS({
|
|
2498
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
2510
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/packet.js"(exports2, module2) {
|
|
2499
2511
|
"use strict";
|
|
2500
2512
|
var Errors2 = require_errors();
|
|
2501
2513
|
var Packet = class {
|
|
@@ -2979,9 +2991,9 @@ var require_packet = __commonJS({
|
|
|
2979
2991
|
}
|
|
2980
2992
|
});
|
|
2981
2993
|
|
|
2982
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
2994
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/packet-node-encoded.js
|
|
2983
2995
|
var require_packet_node_encoded = __commonJS({
|
|
2984
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
2996
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/packet-node-encoded.js"(exports2, module2) {
|
|
2985
2997
|
"use strict";
|
|
2986
2998
|
var Packet = require_packet();
|
|
2987
2999
|
var PacketNodeEncoded = class _PacketNodeEncoded extends Packet {
|
|
@@ -6648,9 +6660,9 @@ var require_lib = __commonJS({
|
|
|
6648
6660
|
}
|
|
6649
6661
|
});
|
|
6650
6662
|
|
|
6651
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
6663
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/packet-node-iconv.js
|
|
6652
6664
|
var require_packet_node_iconv = __commonJS({
|
|
6653
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
6665
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/packet-node-iconv.js"(exports2, module2) {
|
|
6654
6666
|
"use strict";
|
|
6655
6667
|
var Packet = require_packet();
|
|
6656
6668
|
var Iconv = require_lib();
|
|
@@ -6682,9 +6694,9 @@ var require_packet_node_iconv = __commonJS({
|
|
|
6682
6694
|
}
|
|
6683
6695
|
});
|
|
6684
6696
|
|
|
6685
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
6697
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/collations.js
|
|
6686
6698
|
var require_collations = __commonJS({
|
|
6687
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
6699
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/collations.js"(exports2, module2) {
|
|
6688
6700
|
"use strict";
|
|
6689
6701
|
var charsets = [];
|
|
6690
6702
|
var defaultCharsets = [];
|
|
@@ -8065,9 +8077,9 @@ var require_collations = __commonJS({
|
|
|
8065
8077
|
}
|
|
8066
8078
|
});
|
|
8067
8079
|
|
|
8068
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
8080
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/encoder/text-encoder.js
|
|
8069
8081
|
var require_text_encoder = __commonJS({
|
|
8070
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
8082
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/encoder/text-encoder.js"(exports2, module2) {
|
|
8071
8083
|
"use strict";
|
|
8072
8084
|
var QUOTE = 39;
|
|
8073
8085
|
var GEO_TYPES = /* @__PURE__ */ new Set([
|
|
@@ -8298,9 +8310,9 @@ var require_text_encoder = __commonJS({
|
|
|
8298
8310
|
}
|
|
8299
8311
|
});
|
|
8300
8312
|
|
|
8301
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
8313
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/misc/utils.js
|
|
8302
8314
|
var require_utils2 = __commonJS({
|
|
8303
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
8315
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/misc/utils.js"(exports2, module2) {
|
|
8304
8316
|
"use strict";
|
|
8305
8317
|
var hexArray = "0123456789ABCDEF".split("");
|
|
8306
8318
|
var Errors2 = require_errors();
|
|
@@ -8499,9 +8511,9 @@ var require_utils2 = __commonJS({
|
|
|
8499
8511
|
}
|
|
8500
8512
|
});
|
|
8501
8513
|
|
|
8502
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
8514
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/packet-input-stream.js
|
|
8503
8515
|
var require_packet_input_stream = __commonJS({
|
|
8504
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
8516
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/packet-input-stream.js"(exports2, module2) {
|
|
8505
8517
|
"use strict";
|
|
8506
8518
|
var PacketNodeEncoded = require_packet_node_encoded();
|
|
8507
8519
|
var PacketIconvEncoded = require_packet_node_iconv();
|
|
@@ -8673,9 +8685,9 @@ ${Utils.log(this.opts, packet.buf, packet.pos, packet.end, this.header)}`
|
|
|
8673
8685
|
}
|
|
8674
8686
|
});
|
|
8675
8687
|
|
|
8676
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
8688
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/packet-output-stream.js
|
|
8677
8689
|
var require_packet_output_stream = __commonJS({
|
|
8678
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
8690
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/packet-output-stream.js"(exports2, module2) {
|
|
8679
8691
|
"use strict";
|
|
8680
8692
|
var Iconv = require_lib();
|
|
8681
8693
|
var Utils = require_utils2();
|
|
@@ -9305,9 +9317,9 @@ ${Utils.log(
|
|
|
9305
9317
|
}
|
|
9306
9318
|
});
|
|
9307
9319
|
|
|
9308
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
9320
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/compression-input-stream.js
|
|
9309
9321
|
var require_compression_input_stream = __commonJS({
|
|
9310
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
9322
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/compression-input-stream.js"(exports2, module2) {
|
|
9311
9323
|
"use strict";
|
|
9312
9324
|
var ZLib = require("zlib");
|
|
9313
9325
|
var Utils = require_utils2();
|
|
@@ -9429,9 +9441,9 @@ ${Utils.log(this.opts, chunk, 0, chunk.length, this.header)}`
|
|
|
9429
9441
|
}
|
|
9430
9442
|
});
|
|
9431
9443
|
|
|
9432
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
9444
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/compression-output-stream.js
|
|
9433
9445
|
var require_compression_output_stream = __commonJS({
|
|
9434
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
9446
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/io/compression-output-stream.js"(exports2, module2) {
|
|
9435
9447
|
"use strict";
|
|
9436
9448
|
var Utils = require_utils2();
|
|
9437
9449
|
var ZLib = require("zlib");
|
|
@@ -9562,9 +9574,9 @@ ${Utils.log(this.opts, emptyBuf, 0, 7)}`
|
|
|
9562
9574
|
}
|
|
9563
9575
|
});
|
|
9564
9576
|
|
|
9565
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
9577
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/server-status.js
|
|
9566
9578
|
var require_server_status = __commonJS({
|
|
9567
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
9579
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/server-status.js"(exports2, module2) {
|
|
9568
9580
|
"use strict";
|
|
9569
9581
|
module2.exports.STATUS_IN_TRANS = 1;
|
|
9570
9582
|
module2.exports.STATUS_AUTOCOMMIT = 2;
|
|
@@ -9583,9 +9595,9 @@ var require_server_status = __commonJS({
|
|
|
9583
9595
|
}
|
|
9584
9596
|
});
|
|
9585
9597
|
|
|
9586
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
9598
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/misc/connection-information.js
|
|
9587
9599
|
var require_connection_information = __commonJS({
|
|
9588
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
9600
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/misc/connection-information.js"(exports2, module2) {
|
|
9589
9601
|
"use strict";
|
|
9590
9602
|
var ConnectionInformation = class {
|
|
9591
9603
|
#redirectFct;
|
|
@@ -9650,9 +9662,9 @@ var require_connection_information = __commonJS({
|
|
|
9650
9662
|
}
|
|
9651
9663
|
});
|
|
9652
9664
|
|
|
9653
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
9665
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/capabilities.js
|
|
9654
9666
|
var require_capabilities = __commonJS({
|
|
9655
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
9667
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/capabilities.js"(exports2, module2) {
|
|
9656
9668
|
"use strict";
|
|
9657
9669
|
module2.exports.MYSQL = 1n;
|
|
9658
9670
|
module2.exports.FOUND_ROWS = 2n;
|
|
@@ -9687,9 +9699,9 @@ var require_capabilities = __commonJS({
|
|
|
9687
9699
|
}
|
|
9688
9700
|
});
|
|
9689
9701
|
|
|
9690
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
9702
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/config/connection-options.js
|
|
9691
9703
|
var require_connection_options = __commonJS({
|
|
9692
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
9704
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/config/connection-options.js"(exports2, module2) {
|
|
9693
9705
|
"use strict";
|
|
9694
9706
|
var Collations = require_collations();
|
|
9695
9707
|
var urlFormat = /mariadb:\/\/(([^/@:]+)?(:([^/]+))?@)?(([^/:]+)(:([0-9]+))?)\/([^?]+)(\?(.*))?$/;
|
|
@@ -9957,9 +9969,9 @@ var require_connection_options = __commonJS({
|
|
|
9957
9969
|
}
|
|
9958
9970
|
});
|
|
9959
9971
|
|
|
9960
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
9972
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/command.js
|
|
9961
9973
|
var require_command = __commonJS({
|
|
9962
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
9974
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/command.js"(exports2, module2) {
|
|
9963
9975
|
"use strict";
|
|
9964
9976
|
var EventEmitter = require("events");
|
|
9965
9977
|
var Errors2 = require_errors();
|
|
@@ -10082,9 +10094,9 @@ var require_command = __commonJS({
|
|
|
10082
10094
|
}
|
|
10083
10095
|
});
|
|
10084
10096
|
|
|
10085
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
10097
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/plugin-auth.js
|
|
10086
10098
|
var require_plugin_auth = __commonJS({
|
|
10087
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
10099
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/plugin-auth.js"(exports2, module2) {
|
|
10088
10100
|
"use strict";
|
|
10089
10101
|
var Command = require_command();
|
|
10090
10102
|
var PluginAuth = class extends Command {
|
|
@@ -10103,9 +10115,9 @@ var require_plugin_auth = __commonJS({
|
|
|
10103
10115
|
}
|
|
10104
10116
|
});
|
|
10105
10117
|
|
|
10106
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
10118
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/initial-handshake.js
|
|
10107
10119
|
var require_initial_handshake = __commonJS({
|
|
10108
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
10120
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/initial-handshake.js"(exports2, module2) {
|
|
10109
10121
|
"use strict";
|
|
10110
10122
|
var Capabilities = require_capabilities();
|
|
10111
10123
|
var Collations = require_collations();
|
|
@@ -10160,9 +10172,9 @@ var require_initial_handshake = __commonJS({
|
|
|
10160
10172
|
}
|
|
10161
10173
|
});
|
|
10162
10174
|
|
|
10163
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
10175
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/client-capabilities.js
|
|
10164
10176
|
var require_client_capabilities = __commonJS({
|
|
10165
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
10177
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/client-capabilities.js"(exports2, module2) {
|
|
10166
10178
|
"use strict";
|
|
10167
10179
|
var Capabilities = require_capabilities();
|
|
10168
10180
|
module2.exports.init = function(opts, info2) {
|
|
@@ -10206,9 +10218,9 @@ var require_client_capabilities = __commonJS({
|
|
|
10206
10218
|
}
|
|
10207
10219
|
});
|
|
10208
10220
|
|
|
10209
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
10221
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/ssl-request.js
|
|
10210
10222
|
var require_ssl_request = __commonJS({
|
|
10211
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
10223
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/ssl-request.js"(exports2, module2) {
|
|
10212
10224
|
"use strict";
|
|
10213
10225
|
var Capabilities = require_capabilities();
|
|
10214
10226
|
module2.exports.send = function sendSSLRequest(cmd, out, info2, opts) {
|
|
@@ -10229,9 +10241,9 @@ var require_ssl_request = __commonJS({
|
|
|
10229
10241
|
}
|
|
10230
10242
|
});
|
|
10231
10243
|
|
|
10232
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
10244
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/native-password-auth.js
|
|
10233
10245
|
var require_native_password_auth = __commonJS({
|
|
10234
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
10246
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/native-password-auth.js"(exports2, module2) {
|
|
10235
10247
|
"use strict";
|
|
10236
10248
|
var PluginAuth = require_plugin_auth();
|
|
10237
10249
|
var Crypto = require("crypto");
|
|
@@ -10284,9 +10296,9 @@ var require_native_password_auth = __commonJS({
|
|
|
10284
10296
|
}
|
|
10285
10297
|
});
|
|
10286
10298
|
|
|
10287
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
10299
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/handshake.js
|
|
10288
10300
|
var require_handshake = __commonJS({
|
|
10289
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
10301
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/handshake.js"(exports2, module2) {
|
|
10290
10302
|
"use strict";
|
|
10291
10303
|
var PluginAuth = require_plugin_auth();
|
|
10292
10304
|
var InitialHandshake = require_initial_handshake();
|
|
@@ -10451,9 +10463,9 @@ var require_handshake = __commonJS({
|
|
|
10451
10463
|
}
|
|
10452
10464
|
});
|
|
10453
10465
|
|
|
10454
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
10466
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/state-change.js
|
|
10455
10467
|
var require_state_change = __commonJS({
|
|
10456
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
10468
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/state-change.js"(exports2, module2) {
|
|
10457
10469
|
"use strict";
|
|
10458
10470
|
module2.exports.SESSION_TRACK_SYSTEM_VARIABLES = 0;
|
|
10459
10471
|
module2.exports.SESSION_TRACK_SCHEMA = 1;
|
|
@@ -10464,9 +10476,9 @@ var require_state_change = __commonJS({
|
|
|
10464
10476
|
}
|
|
10465
10477
|
});
|
|
10466
10478
|
|
|
10467
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
10479
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/clear-password-auth.js
|
|
10468
10480
|
var require_clear_password_auth = __commonJS({
|
|
10469
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
10481
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/clear-password-auth.js"(exports2, module2) {
|
|
10470
10482
|
"use strict";
|
|
10471
10483
|
var PluginAuth = require_plugin_auth();
|
|
10472
10484
|
var ClearPasswordAuth = class extends PluginAuth {
|
|
@@ -10514,9 +10526,9 @@ var require_clear_password_auth = __commonJS({
|
|
|
10514
10526
|
}
|
|
10515
10527
|
});
|
|
10516
10528
|
|
|
10517
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
10529
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/ed25519-password-auth.js
|
|
10518
10530
|
var require_ed25519_password_auth = __commonJS({
|
|
10519
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
10531
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/ed25519-password-auth.js"(exports2, module2) {
|
|
10520
10532
|
"use strict";
|
|
10521
10533
|
var PluginAuth = require_plugin_auth();
|
|
10522
10534
|
var Crypto = require("crypto");
|
|
@@ -11255,9 +11267,9 @@ var require_ed25519_password_auth = __commonJS({
|
|
|
11255
11267
|
}
|
|
11256
11268
|
});
|
|
11257
11269
|
|
|
11258
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
11270
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/parsec-auth.js
|
|
11259
11271
|
var require_parsec_auth = __commonJS({
|
|
11260
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
11272
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/parsec-auth.js"(exports2, module2) {
|
|
11261
11273
|
"use strict";
|
|
11262
11274
|
var PluginAuth = require_plugin_auth();
|
|
11263
11275
|
var crypto7 = require("crypto");
|
|
@@ -11357,9 +11369,9 @@ var require_parsec_auth = __commonJS({
|
|
|
11357
11369
|
}
|
|
11358
11370
|
});
|
|
11359
11371
|
|
|
11360
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
11372
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/pam-password-auth.js
|
|
11361
11373
|
var require_pam_password_auth = __commonJS({
|
|
11362
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
11374
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/pam-password-auth.js"(exports2, module2) {
|
|
11363
11375
|
"use strict";
|
|
11364
11376
|
var PluginAuth = require_plugin_auth();
|
|
11365
11377
|
var PamPasswordAuth = class extends PluginAuth {
|
|
@@ -11409,9 +11421,9 @@ var require_pam_password_auth = __commonJS({
|
|
|
11409
11421
|
}
|
|
11410
11422
|
});
|
|
11411
11423
|
|
|
11412
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
11424
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/sha256-password-auth.js
|
|
11413
11425
|
var require_sha256_password_auth = __commonJS({
|
|
11414
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
11426
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/sha256-password-auth.js"(exports2, module2) {
|
|
11415
11427
|
"use strict";
|
|
11416
11428
|
var PluginAuth = require_plugin_auth();
|
|
11417
11429
|
var fs3 = require("fs");
|
|
@@ -11539,9 +11551,9 @@ var require_sha256_password_auth = __commonJS({
|
|
|
11539
11551
|
}
|
|
11540
11552
|
});
|
|
11541
11553
|
|
|
11542
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
11554
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/caching-sha2-password-auth.js
|
|
11543
11555
|
var require_caching_sha2_password_auth = __commonJS({
|
|
11544
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
11556
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/auth/caching-sha2-password-auth.js"(exports2, module2) {
|
|
11545
11557
|
"use strict";
|
|
11546
11558
|
var PluginAuth = require_plugin_auth();
|
|
11547
11559
|
var fs3 = require("fs");
|
|
@@ -11651,9 +11663,9 @@ var require_caching_sha2_password_auth = __commonJS({
|
|
|
11651
11663
|
}
|
|
11652
11664
|
});
|
|
11653
11665
|
|
|
11654
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
11666
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/authentication.js
|
|
11655
11667
|
var require_authentication = __commonJS({
|
|
11656
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
11668
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/handshake/authentication.js"(exports2, module2) {
|
|
11657
11669
|
"use strict";
|
|
11658
11670
|
var Command = require_command();
|
|
11659
11671
|
var Errors2 = require_errors();
|
|
@@ -11738,8 +11750,12 @@ var require_authentication = __commonJS({
|
|
|
11738
11750
|
}
|
|
11739
11751
|
}
|
|
11740
11752
|
return this.throwNewError("self-signed certificate", true, info2, "08000", Errors2.ER_SELF_SIGNED);
|
|
11741
|
-
} else
|
|
11742
|
-
const
|
|
11753
|
+
} else {
|
|
11754
|
+
const validationFunction = opts.ssl === true || typeof opts.ssl.checkServerIdentity !== "function" ? tls.checkServerIdentity : opts.ssl.checkServerIdentity;
|
|
11755
|
+
const identityError = validationFunction(
|
|
11756
|
+
typeof opts.ssl === "object" && opts.ssl.servername ? opts.ssl.servername : opts.host,
|
|
11757
|
+
info2.tlsCert
|
|
11758
|
+
);
|
|
11743
11759
|
if (identityError) {
|
|
11744
11760
|
return this.throwNewError(
|
|
11745
11761
|
"certificate identify Error: " + identityError.message,
|
|
@@ -11780,7 +11796,7 @@ var require_authentication = __commonJS({
|
|
|
11780
11796
|
case "redirect_url":
|
|
11781
11797
|
if (value !== "") {
|
|
11782
11798
|
mustRedirect = true;
|
|
11783
|
-
info2.redirect(value, this.successEnd);
|
|
11799
|
+
info2.redirect(value, this.successEnd.bind(this));
|
|
11784
11800
|
}
|
|
11785
11801
|
break;
|
|
11786
11802
|
case "maxscale":
|
|
@@ -11931,9 +11947,9 @@ var require_authentication = __commonJS({
|
|
|
11931
11947
|
}
|
|
11932
11948
|
});
|
|
11933
11949
|
|
|
11934
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
11950
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/quit.js
|
|
11935
11951
|
var require_quit = __commonJS({
|
|
11936
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
11952
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/quit.js"(exports2, module2) {
|
|
11937
11953
|
"use strict";
|
|
11938
11954
|
var Command = require_command();
|
|
11939
11955
|
var QUIT_COMMAND = new Uint8Array([1, 0, 0, 0, 1]);
|
|
@@ -11955,9 +11971,9 @@ var require_quit = __commonJS({
|
|
|
11955
11971
|
}
|
|
11956
11972
|
});
|
|
11957
11973
|
|
|
11958
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
11974
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/ping.js
|
|
11959
11975
|
var require_ping = __commonJS({
|
|
11960
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
11976
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/ping.js"(exports2, module2) {
|
|
11961
11977
|
"use strict";
|
|
11962
11978
|
var Command = require_command();
|
|
11963
11979
|
var ServerStatus = require_server_status();
|
|
@@ -11999,9 +12015,9 @@ var require_ping = __commonJS({
|
|
|
11999
12015
|
}
|
|
12000
12016
|
});
|
|
12001
12017
|
|
|
12002
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
12018
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/reset.js
|
|
12003
12019
|
var require_reset = __commonJS({
|
|
12004
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
12020
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/reset.js"(exports2, module2) {
|
|
12005
12021
|
"use strict";
|
|
12006
12022
|
var Command = require_command();
|
|
12007
12023
|
var ServerStatus = require_server_status();
|
|
@@ -12043,9 +12059,9 @@ var require_reset = __commonJS({
|
|
|
12043
12059
|
}
|
|
12044
12060
|
});
|
|
12045
12061
|
|
|
12046
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
12062
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/field-type.js
|
|
12047
12063
|
var require_field_type = __commonJS({
|
|
12048
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
12064
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/field-type.js"(exports2, module2) {
|
|
12049
12065
|
"use strict";
|
|
12050
12066
|
module2.exports.DECIMAL = 0;
|
|
12051
12067
|
module2.exports.TINY = 1;
|
|
@@ -12114,9 +12130,9 @@ var require_field_type = __commonJS({
|
|
|
12114
12130
|
}
|
|
12115
12131
|
});
|
|
12116
12132
|
|
|
12117
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
12133
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/field-detail.js
|
|
12118
12134
|
var require_field_detail = __commonJS({
|
|
12119
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
12135
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/field-detail.js"(exports2, module2) {
|
|
12120
12136
|
"use strict";
|
|
12121
12137
|
module2.exports.NOT_NULL = 1;
|
|
12122
12138
|
module2.exports.PRIMARY_KEY = 2;
|
|
@@ -12136,9 +12152,9 @@ var require_field_detail = __commonJS({
|
|
|
12136
12152
|
}
|
|
12137
12153
|
});
|
|
12138
12154
|
|
|
12139
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
12155
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/column-definition.js
|
|
12140
12156
|
var require_column_definition = __commonJS({
|
|
12141
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
12157
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/column-definition.js"(exports2, module2) {
|
|
12142
12158
|
"use strict";
|
|
12143
12159
|
var Collations = require_collations();
|
|
12144
12160
|
var FieldType = require_field_type();
|
|
@@ -12294,9 +12310,9 @@ var require_column_definition = __commonJS({
|
|
|
12294
12310
|
}
|
|
12295
12311
|
});
|
|
12296
12312
|
|
|
12297
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
12313
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/misc/parse.js
|
|
12298
12314
|
var require_parse = __commonJS({
|
|
12299
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
12315
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/misc/parse.js"(exports2, module2) {
|
|
12300
12316
|
"use strict";
|
|
12301
12317
|
var Errors2 = require_errors();
|
|
12302
12318
|
var State = {
|
|
@@ -12344,8 +12360,6 @@ var require_parse = __commonJS({
|
|
|
12344
12360
|
case SLASH_BYTE:
|
|
12345
12361
|
if (state2 === State.SlashStarComment && lastChar === STAR_BYTE) {
|
|
12346
12362
|
state2 = State.Normal;
|
|
12347
|
-
} else if (state2 === State.Normal && lastChar === SLASH_BYTE) {
|
|
12348
|
-
state2 = State.EOLComment;
|
|
12349
12363
|
}
|
|
12350
12364
|
break;
|
|
12351
12365
|
case HASH_BYTE:
|
|
@@ -12720,9 +12734,9 @@ var require_parse = __commonJS({
|
|
|
12720
12734
|
}
|
|
12721
12735
|
});
|
|
12722
12736
|
|
|
12723
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
12737
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/decoder/binary-decoder.js
|
|
12724
12738
|
var require_binary_decoder = __commonJS({
|
|
12725
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
12739
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/decoder/binary-decoder.js"(exports2, module2) {
|
|
12726
12740
|
"use strict";
|
|
12727
12741
|
var FieldType = require_field_type();
|
|
12728
12742
|
var Errors2 = require_errors();
|
|
@@ -12958,9 +12972,9 @@ var require_binary_decoder = __commonJS({
|
|
|
12958
12972
|
}
|
|
12959
12973
|
});
|
|
12960
12974
|
|
|
12961
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
12975
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/decoder/text-decoder.js
|
|
12962
12976
|
var require_text_decoder = __commonJS({
|
|
12963
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
12977
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/decoder/text-decoder.js"(exports2, module2) {
|
|
12964
12978
|
"use strict";
|
|
12965
12979
|
var FieldType = require_field_type();
|
|
12966
12980
|
var Errors2 = require_errors();
|
|
@@ -13115,9 +13129,9 @@ var require_text_decoder = __commonJS({
|
|
|
13115
13129
|
}
|
|
13116
13130
|
});
|
|
13117
13131
|
|
|
13118
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
13132
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/class/ok-packet.js
|
|
13119
13133
|
var require_ok_packet = __commonJS({
|
|
13120
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
13134
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/class/ok-packet.js"(exports2, module2) {
|
|
13121
13135
|
"use strict";
|
|
13122
13136
|
var OkPacket = class {
|
|
13123
13137
|
constructor(affectedRows, insertId, warningStatus) {
|
|
@@ -13130,9 +13144,9 @@ var require_ok_packet = __commonJS({
|
|
|
13130
13144
|
}
|
|
13131
13145
|
});
|
|
13132
13146
|
|
|
13133
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
13147
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/parser.js
|
|
13134
13148
|
var require_parser = __commonJS({
|
|
13135
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
13149
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/parser.js"(exports2, module2) {
|
|
13136
13150
|
"use strict";
|
|
13137
13151
|
var Command = require_command();
|
|
13138
13152
|
var ServerStatus = require_server_status();
|
|
@@ -13842,9 +13856,9 @@ var require_parser = __commonJS({
|
|
|
13842
13856
|
}
|
|
13843
13857
|
});
|
|
13844
13858
|
|
|
13845
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
13859
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/query.js
|
|
13846
13860
|
var require_query = __commonJS({
|
|
13847
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
13861
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/query.js"(exports2, module2) {
|
|
13848
13862
|
"use strict";
|
|
13849
13863
|
var Parser = require_parser();
|
|
13850
13864
|
var Errors2 = require_errors();
|
|
@@ -14159,9 +14173,9 @@ var require_query = __commonJS({
|
|
|
14159
14173
|
}
|
|
14160
14174
|
});
|
|
14161
14175
|
|
|
14162
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
14176
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/encoder/binary-encoder.js
|
|
14163
14177
|
var require_binary_encoder = __commonJS({
|
|
14164
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
14178
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/encoder/binary-encoder.js"(exports2, module2) {
|
|
14165
14179
|
"use strict";
|
|
14166
14180
|
var BinaryEncoder = class {
|
|
14167
14181
|
/**
|
|
@@ -14400,9 +14414,9 @@ var require_binary_encoder = __commonJS({
|
|
|
14400
14414
|
}
|
|
14401
14415
|
});
|
|
14402
14416
|
|
|
14403
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
14417
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/class/prepare-wrapper.js
|
|
14404
14418
|
var require_prepare_wrapper = __commonJS({
|
|
14405
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
14419
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/class/prepare-wrapper.js"(exports2, module2) {
|
|
14406
14420
|
"use strict";
|
|
14407
14421
|
var PrepareWrapper = class {
|
|
14408
14422
|
#closed = false;
|
|
@@ -14457,9 +14471,9 @@ var require_prepare_wrapper = __commonJS({
|
|
|
14457
14471
|
}
|
|
14458
14472
|
});
|
|
14459
14473
|
|
|
14460
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
14474
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/class/prepare-cache-wrapper.js
|
|
14461
14475
|
var require_prepare_cache_wrapper = __commonJS({
|
|
14462
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
14476
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/class/prepare-cache-wrapper.js"(exports2, module2) {
|
|
14463
14477
|
"use strict";
|
|
14464
14478
|
var PrepareWrapper = require_prepare_wrapper();
|
|
14465
14479
|
var PrepareCacheWrapper = class {
|
|
@@ -14494,9 +14508,9 @@ var require_prepare_cache_wrapper = __commonJS({
|
|
|
14494
14508
|
}
|
|
14495
14509
|
});
|
|
14496
14510
|
|
|
14497
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
14511
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/execute.js
|
|
14498
14512
|
var require_execute = __commonJS({
|
|
14499
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
14513
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/execute.js"(exports2, module2) {
|
|
14500
14514
|
"use strict";
|
|
14501
14515
|
var Parser = require_parser();
|
|
14502
14516
|
var Errors2 = require_errors();
|
|
@@ -14791,9 +14805,9 @@ var require_execute = __commonJS({
|
|
|
14791
14805
|
}
|
|
14792
14806
|
});
|
|
14793
14807
|
|
|
14794
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
14808
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/execute-stream.js
|
|
14795
14809
|
var require_execute_stream = __commonJS({
|
|
14796
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
14810
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/execute-stream.js"(exports2, module2) {
|
|
14797
14811
|
"use strict";
|
|
14798
14812
|
var Execute = require_execute();
|
|
14799
14813
|
var { Readable } = require("stream");
|
|
@@ -14845,9 +14859,9 @@ var require_execute_stream = __commonJS({
|
|
|
14845
14859
|
}
|
|
14846
14860
|
});
|
|
14847
14861
|
|
|
14848
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
14862
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/class/prepare-result-packet.js
|
|
14849
14863
|
var require_prepare_result_packet = __commonJS({
|
|
14850
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
14864
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/class/prepare-result-packet.js"(exports2, module2) {
|
|
14851
14865
|
"use strict";
|
|
14852
14866
|
var Errors2 = require_errors();
|
|
14853
14867
|
var ExecuteStream = require_execute_stream();
|
|
@@ -14965,9 +14979,9 @@ var require_prepare_result_packet = __commonJS({
|
|
|
14965
14979
|
}
|
|
14966
14980
|
});
|
|
14967
14981
|
|
|
14968
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
14982
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/prepare.js
|
|
14969
14983
|
var require_prepare = __commonJS({
|
|
14970
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
14984
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/prepare.js"(exports2, module2) {
|
|
14971
14985
|
"use strict";
|
|
14972
14986
|
var Parser = require_parser();
|
|
14973
14987
|
var Parse = require_parse();
|
|
@@ -15117,9 +15131,9 @@ var require_prepare = __commonJS({
|
|
|
15117
15131
|
}
|
|
15118
15132
|
});
|
|
15119
15133
|
|
|
15120
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
15134
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/close-prepare.js
|
|
15121
15135
|
var require_close_prepare = __commonJS({
|
|
15122
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
15136
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/close-prepare.js"(exports2, module2) {
|
|
15123
15137
|
"use strict";
|
|
15124
15138
|
var Command = require_command();
|
|
15125
15139
|
var ClosePrepare = class extends Command {
|
|
@@ -15150,9 +15164,9 @@ var require_close_prepare = __commonJS({
|
|
|
15150
15164
|
}
|
|
15151
15165
|
});
|
|
15152
15166
|
|
|
15153
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
15167
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/batch-bulk.js
|
|
15154
15168
|
var require_batch_bulk = __commonJS({
|
|
15155
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
15169
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/batch-bulk.js"(exports2, module2) {
|
|
15156
15170
|
"use strict";
|
|
15157
15171
|
var Parser = require_parser();
|
|
15158
15172
|
var Errors2 = require_errors();
|
|
@@ -15712,9 +15726,9 @@ var require_batch_bulk = __commonJS({
|
|
|
15712
15726
|
}
|
|
15713
15727
|
});
|
|
15714
15728
|
|
|
15715
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
15729
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/change-user.js
|
|
15716
15730
|
var require_change_user = __commonJS({
|
|
15717
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
15731
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/change-user.js"(exports2, module2) {
|
|
15718
15732
|
"use strict";
|
|
15719
15733
|
var Iconv = require_lib();
|
|
15720
15734
|
var Capabilities = require_capabilities();
|
|
@@ -15841,9 +15855,9 @@ var require_change_user = __commonJS({
|
|
|
15841
15855
|
}
|
|
15842
15856
|
});
|
|
15843
15857
|
|
|
15844
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
15858
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/connection_status.js
|
|
15845
15859
|
var require_connection_status = __commonJS({
|
|
15846
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
15860
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/const/connection_status.js"(exports2, module2) {
|
|
15847
15861
|
"use strict";
|
|
15848
15862
|
var Status = {
|
|
15849
15863
|
NOT_CONNECTED: 1,
|
|
@@ -17235,9 +17249,9 @@ var require_commonjs = __commonJS({
|
|
|
17235
17249
|
}
|
|
17236
17250
|
});
|
|
17237
17251
|
|
|
17238
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
17252
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/lru-prepare-cache.js
|
|
17239
17253
|
var require_lru_prepare_cache = __commonJS({
|
|
17240
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
17254
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/lru-prepare-cache.js"(exports2, module2) {
|
|
17241
17255
|
"use strict";
|
|
17242
17256
|
var LRU = require_commonjs();
|
|
17243
17257
|
var LruPrepareCache = class {
|
|
@@ -17307,9 +17321,9 @@ var require_lru_prepare_cache = __commonJS({
|
|
|
17307
17321
|
}
|
|
17308
17322
|
});
|
|
17309
17323
|
|
|
17310
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
17324
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/connection.js
|
|
17311
17325
|
var require_connection = __commonJS({
|
|
17312
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
17326
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/connection.js"(exports2, module2) {
|
|
17313
17327
|
"use strict";
|
|
17314
17328
|
var EventEmitter = require("events");
|
|
17315
17329
|
var Queue = require_denque();
|
|
@@ -18401,14 +18415,10 @@ var require_connection = __commonJS({
|
|
|
18401
18415
|
*/
|
|
18402
18416
|
createSecureContext(info2, callback) {
|
|
18403
18417
|
info2.requireValidCert = this.opts.ssl === true || this.opts.ssl.rejectUnauthorized === void 0 || this.opts.ssl.rejectUnauthorized === true;
|
|
18404
|
-
|
|
18405
|
-
|
|
18406
|
-
|
|
18407
|
-
|
|
18408
|
-
rejectUnauthorized: false,
|
|
18409
|
-
checkServerIdentity: () => {
|
|
18410
|
-
}
|
|
18411
|
-
};
|
|
18418
|
+
const baseConf = { socket: this.socket };
|
|
18419
|
+
if (info2.isMariaDB()) {
|
|
18420
|
+
baseConf["rejectUnauthorized"] = false;
|
|
18421
|
+
}
|
|
18412
18422
|
const sslOption = this.opts.ssl === true ? baseConf : Object.assign({}, this.opts.ssl, baseConf);
|
|
18413
18423
|
try {
|
|
18414
18424
|
const secureSocket = tls.connect(sslOption, callback);
|
|
@@ -19148,9 +19158,9 @@ ${Utils.log(this.opts, packet.buf, packet.pos, packet.end)}`,
|
|
|
19148
19158
|
}
|
|
19149
19159
|
});
|
|
19150
19160
|
|
|
19151
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
19161
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/stream.js
|
|
19152
19162
|
var require_stream = __commonJS({
|
|
19153
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
19163
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cmd/stream.js"(exports2, module2) {
|
|
19154
19164
|
"use strict";
|
|
19155
19165
|
var Query = require_query();
|
|
19156
19166
|
var { Readable } = require("stream");
|
|
@@ -19201,9 +19211,9 @@ var require_stream = __commonJS({
|
|
|
19201
19211
|
}
|
|
19202
19212
|
});
|
|
19203
19213
|
|
|
19204
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
19214
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/connection-promise.js
|
|
19205
19215
|
var require_connection_promise = __commonJS({
|
|
19206
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
19216
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/connection-promise.js"(exports2, module2) {
|
|
19207
19217
|
"use strict";
|
|
19208
19218
|
var Stream = require_stream();
|
|
19209
19219
|
var Errors2 = require_errors();
|
|
@@ -19280,6 +19290,23 @@ var require_connection_promise = __commonJS({
|
|
|
19280
19290
|
this.#capture(cmdParam);
|
|
19281
19291
|
return new Promise(this.#conn.query.bind(this.#conn, cmdParam));
|
|
19282
19292
|
}
|
|
19293
|
+
/**
|
|
19294
|
+
* Execute a query returning a Readable Object that will emit columns/data/end/error events
|
|
19295
|
+
* to permit streaming big result-set
|
|
19296
|
+
*
|
|
19297
|
+
* @param sql sql parameter Object can be used to supersede the default option.
|
|
19298
|
+
* Object must then have `sql` property.
|
|
19299
|
+
* @param values object / array of placeholder values (not mandatory)
|
|
19300
|
+
* @returns {Readable}
|
|
19301
|
+
*/
|
|
19302
|
+
queryStream(sql4, values) {
|
|
19303
|
+
const cmdParam = paramSetter(sql4, values);
|
|
19304
|
+
this.#capture(cmdParam);
|
|
19305
|
+
const cmd = new Stream(cmdParam, this.#conn.opts, this.#conn.socket);
|
|
19306
|
+
if (this.#conn.opts.logger.error) cmd.on("error", this.#conn.opts.logger.error);
|
|
19307
|
+
this.#conn.addCommand(cmd, true);
|
|
19308
|
+
return cmd.inStream;
|
|
19309
|
+
}
|
|
19283
19310
|
static _PARAM_DEF(sql4, values) {
|
|
19284
19311
|
if (typeof sql4 === "object") {
|
|
19285
19312
|
return { sql: sql4.sql, values: sql4.values ? sql4.values : values, opts: sql4 };
|
|
@@ -19337,23 +19364,6 @@ var require_connection_promise = __commonJS({
|
|
|
19337
19364
|
}
|
|
19338
19365
|
return new Promise(this.#conn.importFile.bind(this.#conn, { file: opts.file, database: opts.database }));
|
|
19339
19366
|
}
|
|
19340
|
-
/**
|
|
19341
|
-
* Execute query returning a Readable Object that will emit columns/data/end/error events
|
|
19342
|
-
* to permit streaming big result-set
|
|
19343
|
-
*
|
|
19344
|
-
* @param sql sql parameter Object can be used to supersede default option.
|
|
19345
|
-
* Object must then have sql property.
|
|
19346
|
-
* @param values object / array of placeholder values (not mandatory)
|
|
19347
|
-
* @returns {Readable}
|
|
19348
|
-
*/
|
|
19349
|
-
queryStream(sql4, values) {
|
|
19350
|
-
const cmdParam = paramSetter(sql4, values);
|
|
19351
|
-
this.#capture(cmdParam);
|
|
19352
|
-
const cmd = new Stream(cmdParam, this.#conn.opts, this.#conn.socket);
|
|
19353
|
-
if (this.#conn.opts.logger.error) cmd.on("error", this.#conn.opts.logger.error);
|
|
19354
|
-
this.#conn.addCommand(cmd, true);
|
|
19355
|
-
return cmd.inStream;
|
|
19356
|
-
}
|
|
19357
19367
|
/**
|
|
19358
19368
|
* Send an empty MySQL packet to ensure connection is active, and reset @@wait_timeout
|
|
19359
19369
|
* @param timeout (optional) timeout value in ms. If reached, throw error and close connection
|
|
@@ -19515,9 +19525,9 @@ var require_connection_promise = __commonJS({
|
|
|
19515
19525
|
}
|
|
19516
19526
|
});
|
|
19517
19527
|
|
|
19518
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
19528
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/pool.js
|
|
19519
19529
|
var require_pool = __commonJS({
|
|
19520
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
19530
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/pool.js"(exports2, module2) {
|
|
19521
19531
|
"use strict";
|
|
19522
19532
|
var { EventEmitter } = require("events");
|
|
19523
19533
|
var Queue = require_denque();
|
|
@@ -20076,8 +20086,8 @@ var require_pool = __commonJS({
|
|
|
20076
20086
|
// promise methods
|
|
20077
20087
|
//*****************************************************************
|
|
20078
20088
|
/**
|
|
20079
|
-
* Retrieve a connection from pool.
|
|
20080
|
-
* Create a new one
|
|
20089
|
+
* Retrieve a connection from the pool.
|
|
20090
|
+
* Create a new one if limit is not reached.
|
|
20081
20091
|
* wait until acquireTimeout.
|
|
20082
20092
|
* @param cmdParam for stackTrace error
|
|
20083
20093
|
* @param {Function} callback - Callback function(err, conn)
|
|
@@ -20289,9 +20299,9 @@ var require_pool = __commonJS({
|
|
|
20289
20299
|
}
|
|
20290
20300
|
});
|
|
20291
20301
|
|
|
20292
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
20302
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/pool-promise.js
|
|
20293
20303
|
var require_pool_promise = __commonJS({
|
|
20294
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
20304
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/pool-promise.js"(exports2, module2) {
|
|
20295
20305
|
"use strict";
|
|
20296
20306
|
var { EventEmitter } = require("events");
|
|
20297
20307
|
var Pool = require_pool();
|
|
@@ -20515,9 +20525,9 @@ var require_pool_promise = __commonJS({
|
|
|
20515
20525
|
}
|
|
20516
20526
|
});
|
|
20517
20527
|
|
|
20518
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
20528
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/config/cluster-options.js
|
|
20519
20529
|
var require_cluster_options = __commonJS({
|
|
20520
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
20530
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/config/cluster-options.js"(exports2, module2) {
|
|
20521
20531
|
"use strict";
|
|
20522
20532
|
var ClusterOptions = class {
|
|
20523
20533
|
constructor(opts) {
|
|
@@ -20538,9 +20548,9 @@ var require_cluster_options = __commonJS({
|
|
|
20538
20548
|
}
|
|
20539
20549
|
});
|
|
20540
20550
|
|
|
20541
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
20551
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/config/pool-options.js
|
|
20542
20552
|
var require_pool_options = __commonJS({
|
|
20543
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
20553
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/config/pool-options.js"(exports2, module2) {
|
|
20544
20554
|
"use strict";
|
|
20545
20555
|
var ConnOptions = require_connection_options();
|
|
20546
20556
|
var PoolOptions = class {
|
|
@@ -20578,9 +20588,9 @@ var require_pool_options = __commonJS({
|
|
|
20578
20588
|
}
|
|
20579
20589
|
});
|
|
20580
20590
|
|
|
20581
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
20591
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/connection-callback.js
|
|
20582
20592
|
var require_connection_callback = __commonJS({
|
|
20583
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
20593
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/connection-callback.js"(exports2, module2) {
|
|
20584
20594
|
"use strict";
|
|
20585
20595
|
var Errors2 = require_errors();
|
|
20586
20596
|
var { Status } = require_connection_status();
|
|
@@ -20604,7 +20614,7 @@ var require_connection_callback = __commonJS({
|
|
|
20604
20614
|
});
|
|
20605
20615
|
};
|
|
20606
20616
|
/**
|
|
20607
|
-
* Permit
|
|
20617
|
+
* Permit changing user during connection.
|
|
20608
20618
|
* All user variables will be reset, Prepare commands will be released.
|
|
20609
20619
|
* !!! mysql has a bug when CONNECT_ATTRS capability is set, that is default !!!!
|
|
20610
20620
|
*
|
|
@@ -20678,6 +20688,20 @@ var require_connection_callback = __commonJS({
|
|
|
20678
20688
|
const cmdParam = _ConnectionCallback._PARAM(this.#conn.opts, sql4, values, callback);
|
|
20679
20689
|
return _ConnectionCallback._QUERY_CMD(this.#conn, cmdParam);
|
|
20680
20690
|
}
|
|
20691
|
+
/**
|
|
20692
|
+
* Execute a query returning a Readable Object that will emit columns/data/end/error events
|
|
20693
|
+
* to permit streaming big result-set
|
|
20694
|
+
*
|
|
20695
|
+
* @param sql sql parameter Object can be used to supersede the default option.
|
|
20696
|
+
* Object must then have `sql` property.
|
|
20697
|
+
* @param values object / array of placeholder values (not mandatory)
|
|
20698
|
+
* @returns {Readable}
|
|
20699
|
+
*/
|
|
20700
|
+
queryStream(sql4, values) {
|
|
20701
|
+
const cmdParam = _ConnectionCallback._PARAM(this.#conn.opts, sql4, values);
|
|
20702
|
+
const cmd = _ConnectionCallback._QUERY_CMD(this.#conn, cmdParam);
|
|
20703
|
+
return cmd.stream();
|
|
20704
|
+
}
|
|
20681
20705
|
static _QUERY_CMD(conn, cmdParam) {
|
|
20682
20706
|
let cmd;
|
|
20683
20707
|
if (cmdParam.callback) {
|
|
@@ -20782,8 +20806,8 @@ var require_connection_callback = __commonJS({
|
|
|
20782
20806
|
* Execute a batch
|
|
20783
20807
|
* events to permit streaming big result-set
|
|
20784
20808
|
*
|
|
20785
|
-
* @param sql sql parameter Object can be used to supersede default
|
|
20786
|
-
* Object must then have sql property.
|
|
20809
|
+
* @param sql sql parameter Object can be used to supersede the default options.
|
|
20810
|
+
* Object must then have `sql` property.
|
|
20787
20811
|
* @param values object / array of placeholder values (not mandatory)
|
|
20788
20812
|
* @param callback callback
|
|
20789
20813
|
*/
|
|
@@ -21026,9 +21050,9 @@ var require_connection_callback = __commonJS({
|
|
|
21026
21050
|
}
|
|
21027
21051
|
});
|
|
21028
21052
|
|
|
21029
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
21053
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/pool-callback.js
|
|
21030
21054
|
var require_pool_callback = __commonJS({
|
|
21031
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
21055
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/pool-callback.js"(exports2, module2) {
|
|
21032
21056
|
"use strict";
|
|
21033
21057
|
var { EventEmitter } = require("events");
|
|
21034
21058
|
var Pool = require_pool();
|
|
@@ -21095,8 +21119,8 @@ var require_pool_callback = __commonJS({
|
|
|
21095
21119
|
}).catch(callback || this.#noop);
|
|
21096
21120
|
}
|
|
21097
21121
|
/**
|
|
21098
|
-
* Retrieve a connection from pool.
|
|
21099
|
-
* Create a new one
|
|
21122
|
+
* Retrieve a connection from the pool.
|
|
21123
|
+
* Create a new one if the limit is not reached.
|
|
21100
21124
|
* wait until acquireTimeout.
|
|
21101
21125
|
*
|
|
21102
21126
|
* @param cb callback
|
|
@@ -21249,9 +21273,9 @@ var require_pool_callback = __commonJS({
|
|
|
21249
21273
|
}
|
|
21250
21274
|
});
|
|
21251
21275
|
|
|
21252
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
21276
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/filtered-cluster.js
|
|
21253
21277
|
var require_filtered_cluster = __commonJS({
|
|
21254
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
21278
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/filtered-cluster.js"(exports2, module2) {
|
|
21255
21279
|
"use strict";
|
|
21256
21280
|
var FilteredCluster = class {
|
|
21257
21281
|
#cluster;
|
|
@@ -21263,7 +21287,7 @@ var require_filtered_cluster = __commonJS({
|
|
|
21263
21287
|
this.#selector = selectorArg;
|
|
21264
21288
|
}
|
|
21265
21289
|
/**
|
|
21266
|
-
* Get a connection according to previously indicated pattern and selector.
|
|
21290
|
+
* Get a connection according to a previously indicated pattern and selector.
|
|
21267
21291
|
*
|
|
21268
21292
|
* @return {Promise}
|
|
21269
21293
|
*/
|
|
@@ -21271,7 +21295,7 @@ var require_filtered_cluster = __commonJS({
|
|
|
21271
21295
|
return this.#cluster.getConnection(this.#pattern, this.#selector);
|
|
21272
21296
|
}
|
|
21273
21297
|
/**
|
|
21274
|
-
* Execute a text query on one connection from available pools matching pattern
|
|
21298
|
+
* Execute a text query on one connection from an available pools matching pattern
|
|
21275
21299
|
* in cluster.
|
|
21276
21300
|
*
|
|
21277
21301
|
* @param sql sql command
|
|
@@ -21338,15 +21362,139 @@ var require_filtered_cluster = __commonJS({
|
|
|
21338
21362
|
}
|
|
21339
21363
|
});
|
|
21340
21364
|
|
|
21341
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
21365
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/filtered-cluster-callback.js
|
|
21366
|
+
var require_filtered_cluster_callback = __commonJS({
|
|
21367
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/filtered-cluster-callback.js"(exports2, module2) {
|
|
21368
|
+
"use strict";
|
|
21369
|
+
var FilteredClusterCallback = class {
|
|
21370
|
+
#cluster;
|
|
21371
|
+
#pattern;
|
|
21372
|
+
#selector;
|
|
21373
|
+
constructor(poolCluster, patternArg, selectorArg) {
|
|
21374
|
+
this.#cluster = poolCluster;
|
|
21375
|
+
this.#pattern = patternArg;
|
|
21376
|
+
this.#selector = selectorArg;
|
|
21377
|
+
}
|
|
21378
|
+
/**
|
|
21379
|
+
* Get a connection according to a previously indicated pattern and selector.
|
|
21380
|
+
*/
|
|
21381
|
+
getConnection(callback) {
|
|
21382
|
+
const cal = callback ? callback : (err, conn) => {
|
|
21383
|
+
};
|
|
21384
|
+
return this.#cluster.getConnection(this.#pattern, this.#selector, cal);
|
|
21385
|
+
}
|
|
21386
|
+
/**
|
|
21387
|
+
* Execute a text query on one connection from an available pools matching pattern
|
|
21388
|
+
* in cluster.
|
|
21389
|
+
*
|
|
21390
|
+
* @param sql sql command
|
|
21391
|
+
* @param value parameter value of SQL command (not mandatory)
|
|
21392
|
+
* @param callback callback parameters
|
|
21393
|
+
* @return {Promise}
|
|
21394
|
+
*/
|
|
21395
|
+
query(sql4, value, callback) {
|
|
21396
|
+
let sq = sql4, val = value, cal = callback;
|
|
21397
|
+
if (typeof value === "function") {
|
|
21398
|
+
val = null;
|
|
21399
|
+
cal = value;
|
|
21400
|
+
}
|
|
21401
|
+
const endingFct = cal ? cal : () => {
|
|
21402
|
+
};
|
|
21403
|
+
this.getConnection((err, conn) => {
|
|
21404
|
+
if (err) {
|
|
21405
|
+
endingFct(err);
|
|
21406
|
+
} else {
|
|
21407
|
+
conn.query(sq, val, (err2, res, meta) => {
|
|
21408
|
+
conn.release(() => {
|
|
21409
|
+
});
|
|
21410
|
+
if (err2) {
|
|
21411
|
+
endingFct(err2);
|
|
21412
|
+
} else {
|
|
21413
|
+
endingFct(null, res, meta);
|
|
21414
|
+
}
|
|
21415
|
+
});
|
|
21416
|
+
}
|
|
21417
|
+
});
|
|
21418
|
+
}
|
|
21419
|
+
/**
|
|
21420
|
+
* Execute a binary query on one connection from an available pools matching pattern
|
|
21421
|
+
* in cluster.
|
|
21422
|
+
*
|
|
21423
|
+
* @param sql sql command
|
|
21424
|
+
* @param value parameter value of SQL command (not mandatory)
|
|
21425
|
+
* @param callback callback function
|
|
21426
|
+
*/
|
|
21427
|
+
execute(sql4, value, callback) {
|
|
21428
|
+
let sq = sql4, val = value, cal = callback;
|
|
21429
|
+
if (typeof value === "function") {
|
|
21430
|
+
val = null;
|
|
21431
|
+
cal = value;
|
|
21432
|
+
}
|
|
21433
|
+
const endingFct = cal ? cal : () => {
|
|
21434
|
+
};
|
|
21435
|
+
this.getConnection((err, conn) => {
|
|
21436
|
+
if (err) {
|
|
21437
|
+
endingFct(err);
|
|
21438
|
+
} else {
|
|
21439
|
+
conn.execute(sq, val, (err2, res, meta) => {
|
|
21440
|
+
conn.release(() => {
|
|
21441
|
+
});
|
|
21442
|
+
if (err2) {
|
|
21443
|
+
endingFct(err2);
|
|
21444
|
+
} else {
|
|
21445
|
+
endingFct(null, res, meta);
|
|
21446
|
+
}
|
|
21447
|
+
});
|
|
21448
|
+
}
|
|
21449
|
+
});
|
|
21450
|
+
}
|
|
21451
|
+
/**
|
|
21452
|
+
* Execute a batch on one connection from an available pools matching pattern
|
|
21453
|
+
* in cluster.
|
|
21454
|
+
*
|
|
21455
|
+
* @param sql sql command
|
|
21456
|
+
* @param value parameter value of SQL command
|
|
21457
|
+
* @param callback callback function
|
|
21458
|
+
*/
|
|
21459
|
+
batch(sql4, value, callback) {
|
|
21460
|
+
let sq = sql4, val = value, cal = callback;
|
|
21461
|
+
if (typeof value === "function") {
|
|
21462
|
+
val = null;
|
|
21463
|
+
cal = value;
|
|
21464
|
+
}
|
|
21465
|
+
const endingFct = cal ? cal : () => {
|
|
21466
|
+
};
|
|
21467
|
+
this.getConnection((err, conn) => {
|
|
21468
|
+
if (err) {
|
|
21469
|
+
endingFct(err);
|
|
21470
|
+
} else {
|
|
21471
|
+
conn.batch(sq, val, (err2, res, meta) => {
|
|
21472
|
+
conn.release(() => {
|
|
21473
|
+
});
|
|
21474
|
+
if (err2) {
|
|
21475
|
+
endingFct(err2);
|
|
21476
|
+
} else {
|
|
21477
|
+
endingFct(null, res, meta);
|
|
21478
|
+
}
|
|
21479
|
+
});
|
|
21480
|
+
}
|
|
21481
|
+
});
|
|
21482
|
+
}
|
|
21483
|
+
};
|
|
21484
|
+
module2.exports = FilteredClusterCallback;
|
|
21485
|
+
}
|
|
21486
|
+
});
|
|
21487
|
+
|
|
21488
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cluster.js
|
|
21342
21489
|
var require_cluster = __commonJS({
|
|
21343
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
21490
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/lib/cluster.js"(exports2, module2) {
|
|
21344
21491
|
"use strict";
|
|
21345
21492
|
var ClusterOptions = require_cluster_options();
|
|
21346
21493
|
var PoolOptions = require_pool_options();
|
|
21347
21494
|
var PoolCallback = require_pool_callback();
|
|
21348
21495
|
var PoolPromise = require_pool_promise();
|
|
21349
21496
|
var FilteredCluster = require_filtered_cluster();
|
|
21497
|
+
var FilteredClusterCallback = require_filtered_cluster_callback();
|
|
21350
21498
|
var EventEmitter = require("events");
|
|
21351
21499
|
var Cluster = class extends EventEmitter {
|
|
21352
21500
|
#opts;
|
|
@@ -21358,7 +21506,7 @@ var require_cluster = __commonJS({
|
|
|
21358
21506
|
this.#opts = new ClusterOptions(args);
|
|
21359
21507
|
}
|
|
21360
21508
|
/**
|
|
21361
|
-
* Add a new pool node to cluster.
|
|
21509
|
+
* Add a new pool node to the cluster.
|
|
21362
21510
|
*
|
|
21363
21511
|
* @param id identifier
|
|
21364
21512
|
* @param config pool configuration
|
|
@@ -21394,6 +21542,9 @@ var require_cluster = __commonJS({
|
|
|
21394
21542
|
of(pattern, selector) {
|
|
21395
21543
|
return new FilteredCluster(this, pattern, selector);
|
|
21396
21544
|
}
|
|
21545
|
+
_ofCallback(pattern, selector) {
|
|
21546
|
+
return new FilteredClusterCallback(this, pattern, selector);
|
|
21547
|
+
}
|
|
21397
21548
|
/**
|
|
21398
21549
|
* Remove nodes according to pattern.
|
|
21399
21550
|
*
|
|
@@ -21413,7 +21564,7 @@ var require_cluster = __commonJS({
|
|
|
21413
21564
|
);
|
|
21414
21565
|
}
|
|
21415
21566
|
/**
|
|
21416
|
-
* Get connection from available pools matching pattern, according to selector
|
|
21567
|
+
* Get connection from an available pools matching pattern, according to selector
|
|
21417
21568
|
*
|
|
21418
21569
|
* @param pattern pattern filter (not mandatory)
|
|
21419
21570
|
* @param selector node selector ('RR','RANDOM' or 'ORDER')
|
|
@@ -21428,9 +21579,10 @@ var require_cluster = __commonJS({
|
|
|
21428
21579
|
_setCallback() {
|
|
21429
21580
|
this.getConnection = this._getConnectionCallback;
|
|
21430
21581
|
this._createPool = this._createPoolCallback;
|
|
21582
|
+
this.of = this._ofCallback;
|
|
21431
21583
|
}
|
|
21432
21584
|
/**
|
|
21433
|
-
* Get connection from available pools matching pattern, according to selector
|
|
21585
|
+
* Get connection from an available pools matching pattern, according to selector
|
|
21434
21586
|
* with additional parameter to avoid reusing failing node
|
|
21435
21587
|
*
|
|
21436
21588
|
* @param pattern pattern filter (not mandatory)
|
|
@@ -21475,17 +21627,18 @@ var require_cluster = __commonJS({
|
|
|
21475
21627
|
return pool2;
|
|
21476
21628
|
}
|
|
21477
21629
|
/**
|
|
21478
|
-
* Get connection from available pools matching pattern, according to selector
|
|
21630
|
+
* Get connection from an available pools matching pattern, according to selector
|
|
21479
21631
|
* with additional parameter to avoid reusing failing node
|
|
21480
21632
|
*
|
|
21481
21633
|
* @param pattern pattern filter (not mandatory)
|
|
21482
21634
|
* @param selector node selector ('RR','RANDOM' or 'ORDER')
|
|
21483
21635
|
* @param callback callback function
|
|
21636
|
+
* @param remainingRetry remaining retry
|
|
21484
21637
|
* @param avoidNodeKey failing node
|
|
21485
21638
|
* @param lastError last error
|
|
21486
21639
|
* @private
|
|
21487
21640
|
*/
|
|
21488
|
-
_getConnectionCallback(pattern, selector, callback, avoidNodeKey, lastError) {
|
|
21641
|
+
_getConnectionCallback(pattern, selector, callback, remainingRetry, avoidNodeKey, lastError) {
|
|
21489
21642
|
const matchingNodeList = this._matchingNodes(pattern || /^/);
|
|
21490
21643
|
if (matchingNodeList.length === 0) {
|
|
21491
21644
|
if (Object.keys(this.#nodes).length === 0 && !lastError) {
|
|
@@ -21499,7 +21652,8 @@ var require_cluster = __commonJS({
|
|
|
21499
21652
|
callback(new Error(errMsg));
|
|
21500
21653
|
return;
|
|
21501
21654
|
}
|
|
21502
|
-
|
|
21655
|
+
if (remainingRetry === void 0) remainingRetry = matchingNodeList.length;
|
|
21656
|
+
const retry = --remainingRetry >= 0 ? this._getConnectionCallback.bind(this, pattern, selector, callback, remainingRetry) : null;
|
|
21503
21657
|
try {
|
|
21504
21658
|
const nodeKey = this._selectPool(matchingNodeList, selector, avoidNodeKey);
|
|
21505
21659
|
this._handleConnectionCallbackError(matchingNodeList, nodeKey, retry, callback);
|
|
@@ -21527,7 +21681,7 @@ var require_cluster = __commonJS({
|
|
|
21527
21681
|
return matchingNodeList;
|
|
21528
21682
|
}
|
|
21529
21683
|
/**
|
|
21530
|
-
* Select next node to be chosen in nodeList according to selector and failed nodes.
|
|
21684
|
+
* Select the next node to be chosen in the nodeList according to selector and failed nodes.
|
|
21531
21685
|
*
|
|
21532
21686
|
* @param nodeList current node list
|
|
21533
21687
|
* @param selectorParam selector
|
|
@@ -21678,9 +21832,9 @@ var require_cluster = __commonJS({
|
|
|
21678
21832
|
}
|
|
21679
21833
|
});
|
|
21680
21834
|
|
|
21681
|
-
// ../../node_modules/.pnpm/mariadb@3.4.
|
|
21835
|
+
// ../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/promise.js
|
|
21682
21836
|
var require_promise = __commonJS({
|
|
21683
|
-
"../../node_modules/.pnpm/mariadb@3.4.
|
|
21837
|
+
"../../node_modules/.pnpm/mariadb@3.4.5/node_modules/mariadb/promise.js"(exports2, module2) {
|
|
21684
21838
|
"use strict";
|
|
21685
21839
|
require_check_node();
|
|
21686
21840
|
var Connection = require_connection();
|
|
@@ -106670,7 +106824,8 @@ var TransactionManager = class {
|
|
|
106670
106824
|
let hasTimedOut = false;
|
|
106671
106825
|
const startTimer = setTimeout(() => hasTimedOut = true, validatedOptions.maxWait);
|
|
106672
106826
|
startTimer.unref();
|
|
106673
|
-
transaction.transaction = await this.driverAdapter.startTransaction(validatedOptions.isolationLevel).catch(rethrowAsUserFacing)
|
|
106827
|
+
transaction.transaction = await this.driverAdapter.startTransaction(validatedOptions.isolationLevel).catch(rethrowAsUserFacing);
|
|
106828
|
+
clearTimeout(startTimer);
|
|
106674
106829
|
switch (transaction.status) {
|
|
106675
106830
|
case "waiting":
|
|
106676
106831
|
if (hasTimedOut) {
|
|
@@ -108400,7 +108555,7 @@ function isPromiseLike(value) {
|
|
|
108400
108555
|
}
|
|
108401
108556
|
|
|
108402
108557
|
// package.json
|
|
108403
|
-
var version = "6.16.0-integration-
|
|
108558
|
+
var version = "6.16.0-integration-feat-prisma-client-default-runtime.2";
|
|
108404
108559
|
|
|
108405
108560
|
// src/utils/error.ts
|
|
108406
108561
|
function extractErrorFromUnknown(value) {
|
|
@@ -110029,11 +110184,11 @@ function mapArg3(arg, argType) {
|
|
|
110029
110184
|
function formatDateTime3(date5) {
|
|
110030
110185
|
const pad2 = (n2, z2 = 2) => String(n2).padStart(z2, "0");
|
|
110031
110186
|
const ms = date5.getUTCMilliseconds();
|
|
110032
|
-
return date5.getUTCFullYear() + "-" + pad2(date5.getUTCMonth() + 1) + "-" + pad2(date5.getUTCDate()) + " " + pad2(date5.getUTCHours()) + ":" + pad2(date5.getUTCMinutes()) + ":" + pad2(date5.getUTCSeconds()) + (ms ? "." + String(ms).padStart(3, "0") : "");
|
|
110187
|
+
return pad2(date5.getUTCFullYear(), 4) + "-" + pad2(date5.getUTCMonth() + 1) + "-" + pad2(date5.getUTCDate()) + " " + pad2(date5.getUTCHours()) + ":" + pad2(date5.getUTCMinutes()) + ":" + pad2(date5.getUTCSeconds()) + (ms ? "." + String(ms).padStart(3, "0") : "");
|
|
110033
110188
|
}
|
|
110034
110189
|
function formatDate3(date5) {
|
|
110035
110190
|
const pad2 = (n2, z2 = 2) => String(n2).padStart(z2, "0");
|
|
110036
|
-
return date5.getUTCFullYear() + "-" + pad2(date5.getUTCMonth() + 1) + "-" + pad2(date5.getUTCDate());
|
|
110191
|
+
return pad2(date5.getUTCFullYear(), 4) + "-" + pad2(date5.getUTCMonth() + 1) + "-" + pad2(date5.getUTCDate());
|
|
110037
110192
|
}
|
|
110038
110193
|
function formatTime3(date5) {
|
|
110039
110194
|
const pad2 = (n2, z2 = 2) => String(n2).padStart(z2, "0");
|
|
@@ -110319,17 +110474,20 @@ var PgQueryable = class {
|
|
|
110319
110474
|
}
|
|
110320
110475
|
};
|
|
110321
110476
|
var PgTransaction = class extends PgQueryable {
|
|
110322
|
-
constructor(client, options, pgOptions) {
|
|
110477
|
+
constructor(client, options, pgOptions, cleanup) {
|
|
110323
110478
|
super(client, pgOptions);
|
|
110324
110479
|
this.options = options;
|
|
110325
110480
|
this.pgOptions = pgOptions;
|
|
110481
|
+
this.cleanup = cleanup;
|
|
110326
110482
|
}
|
|
110327
110483
|
async commit() {
|
|
110328
110484
|
debug6(`[js::commit]`);
|
|
110485
|
+
this.cleanup?.();
|
|
110329
110486
|
this.client.release();
|
|
110330
110487
|
}
|
|
110331
110488
|
async rollback() {
|
|
110332
110489
|
debug6(`[js::rollback]`);
|
|
110490
|
+
this.cleanup?.();
|
|
110333
110491
|
this.client.release();
|
|
110334
110492
|
}
|
|
110335
110493
|
};
|
|
@@ -110346,12 +110504,16 @@ var PrismaPgAdapter = class extends PgQueryable {
|
|
|
110346
110504
|
const tag2 = "[js::startTransaction]";
|
|
110347
110505
|
debug6("%s options: %O", tag2, options);
|
|
110348
110506
|
const conn = await this.client.connect().catch((error44) => this.onError(error44));
|
|
110349
|
-
|
|
110507
|
+
const onError2 = (err) => {
|
|
110350
110508
|
debug6(`Error from pool connection: ${err.message} %O`, err);
|
|
110351
110509
|
this.pgOptions?.onConnectionError?.(err);
|
|
110352
|
-
}
|
|
110510
|
+
};
|
|
110511
|
+
conn.on("error", onError2);
|
|
110512
|
+
const cleanup = () => {
|
|
110513
|
+
conn.removeListener("error", onError2);
|
|
110514
|
+
};
|
|
110353
110515
|
try {
|
|
110354
|
-
const tx = new PgTransaction(conn, options);
|
|
110516
|
+
const tx = new PgTransaction(conn, options, this.pgOptions, cleanup);
|
|
110355
110517
|
await tx.executeRaw({ sql: "BEGIN", args: [], argTypes: [] });
|
|
110356
110518
|
if (isolationLevel) {
|
|
110357
110519
|
await tx.executeRaw({
|
|
@@ -110362,6 +110524,7 @@ var PrismaPgAdapter = class extends PgQueryable {
|
|
|
110362
110524
|
}
|
|
110363
110525
|
return tx;
|
|
110364
110526
|
} catch (error44) {
|
|
110527
|
+
cleanup();
|
|
110365
110528
|
conn.release(error44);
|
|
110366
110529
|
this.onError(error44);
|
|
110367
110530
|
}
|
|
@@ -110512,7 +110675,7 @@ var App = class _App {
|
|
|
110512
110675
|
const queryInterpreter = QueryInterpreter.forSql({
|
|
110513
110676
|
placeholderValues,
|
|
110514
110677
|
tracingHelper: this.#tracingHandler,
|
|
110515
|
-
transactionManager: transactionId
|
|
110678
|
+
transactionManager: transactionId === null ? { enabled: true, manager: this.#transactionManager } : { enabled: false },
|
|
110516
110679
|
onQuery: logQuery
|
|
110517
110680
|
});
|
|
110518
110681
|
const result = await Promise.race([
|