@rex0220/kintone-sql-tools 3.68.0 → 3.70.0
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/README.md +38 -0
- package/dist-cli/ksql.js +330 -64
- package/dist-engine/index.cjs +16 -16
- package/dist-engine/index.mjs +16 -16
- package/dist-engine/ksql-engine.umd.js +16 -16
- package/dist-engine/meta/bundle-baseline.json +10 -10
- package/dist-engine/meta/cjs.json +100 -43
- package/dist-engine/meta/esm.json +100 -43
- package/dist-engine/meta/umd.json +100 -43
- package/dist-flow/flow-library/errors.d.ts +6 -0
- package/dist-flow/flow-library/index.d.ts +13 -0
- package/dist-flow/flow-library/publicTypes.d.ts +271 -0
- package/dist-flow/flow-library/writableClient.d.ts +2 -0
- package/dist-flow/index.cjs +18 -0
- package/dist-flow/index.mjs +18 -0
- package/dist-flow/meta/cjs.json +2346 -0
- package/dist-flow/meta/esm.json +2357 -0
- package/dist-flow/types/ast.d.ts +881 -0
- package/dist-mcp/ksql-mcp.js +686 -162
- package/dist-mcpb/ksql-mcp.mcpb +0 -0
- package/package.json +12 -3
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-08-
|
|
2
|
+
"generatedAt": "2026-08-21T15:03:34.935Z",
|
|
3
3
|
"baseline": "B66 Phase1 initial measured values; no arbitrary size ceiling",
|
|
4
4
|
"bundles": {
|
|
5
5
|
"index.cjs": {
|
|
6
|
-
"inputCount":
|
|
7
|
-
"minifiedBytes":
|
|
8
|
-
"gzipBytes":
|
|
6
|
+
"inputCount": 115,
|
|
7
|
+
"minifiedBytes": 680144,
|
|
8
|
+
"gzipBytes": 185767,
|
|
9
9
|
"forbidden": {
|
|
10
10
|
"mcp-instructions": [],
|
|
11
11
|
"src-mcp": [],
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"index.mjs": {
|
|
26
|
-
"inputCount":
|
|
27
|
-
"minifiedBytes":
|
|
28
|
-
"gzipBytes":
|
|
26
|
+
"inputCount": 115,
|
|
27
|
+
"minifiedBytes": 679599,
|
|
28
|
+
"gzipBytes": 185448,
|
|
29
29
|
"forbidden": {
|
|
30
30
|
"mcp-instructions": [],
|
|
31
31
|
"src-mcp": [],
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"ksql-engine.umd.js": {
|
|
46
|
-
"inputCount":
|
|
47
|
-
"minifiedBytes":
|
|
48
|
-
"gzipBytes":
|
|
46
|
+
"inputCount": 117,
|
|
47
|
+
"minifiedBytes": 680623,
|
|
48
|
+
"gzipBytes": 185765,
|
|
49
49
|
"forbidden": {
|
|
50
50
|
"mcp-instructions": [],
|
|
51
51
|
"src-mcp": [],
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"format": "esm"
|
|
12
12
|
},
|
|
13
13
|
"src/types/ast.ts": {
|
|
14
|
-
"bytes":
|
|
14
|
+
"bytes": 38224,
|
|
15
15
|
"imports": [
|
|
16
16
|
{
|
|
17
17
|
"path": "src/core/exactDecimal.ts",
|
|
@@ -420,8 +420,13 @@
|
|
|
420
420
|
],
|
|
421
421
|
"format": "esm"
|
|
422
422
|
},
|
|
423
|
+
"src/core/asOfClock.ts": {
|
|
424
|
+
"bytes": 2891,
|
|
425
|
+
"imports": [],
|
|
426
|
+
"format": "esm"
|
|
427
|
+
},
|
|
423
428
|
"src/core/batch.ts": {
|
|
424
|
-
"bytes":
|
|
429
|
+
"bytes": 21010,
|
|
425
430
|
"imports": [
|
|
426
431
|
{
|
|
427
432
|
"path": "src/core/dmlGuard.ts",
|
|
@@ -452,6 +457,11 @@
|
|
|
452
457
|
"path": "src/core/groupingValidation.ts",
|
|
453
458
|
"kind": "import-statement",
|
|
454
459
|
"original": "./groupingValidation"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"path": "src/core/asOfClock.ts",
|
|
463
|
+
"kind": "import-statement",
|
|
464
|
+
"original": "./asOfClock"
|
|
455
465
|
}
|
|
456
466
|
],
|
|
457
467
|
"format": "esm"
|
|
@@ -473,7 +483,7 @@
|
|
|
473
483
|
"format": "esm"
|
|
474
484
|
},
|
|
475
485
|
"src/parser/parser.ts": {
|
|
476
|
-
"bytes":
|
|
486
|
+
"bytes": 217567,
|
|
477
487
|
"imports": [
|
|
478
488
|
{
|
|
479
489
|
"path": "src/lexer/tokens.ts",
|
|
@@ -490,6 +500,11 @@
|
|
|
490
500
|
"kind": "import-statement",
|
|
491
501
|
"original": "../core/grouping"
|
|
492
502
|
},
|
|
503
|
+
{
|
|
504
|
+
"path": "src/core/asOfClock.ts",
|
|
505
|
+
"kind": "import-statement",
|
|
506
|
+
"original": "../core/asOfClock"
|
|
507
|
+
},
|
|
493
508
|
{
|
|
494
509
|
"path": "src/core/aggregateExpression.ts",
|
|
495
510
|
"kind": "import-statement",
|
|
@@ -1144,7 +1159,7 @@
|
|
|
1144
1159
|
"format": "esm"
|
|
1145
1160
|
},
|
|
1146
1161
|
"src/core/diagnostics.ts": {
|
|
1147
|
-
"bytes":
|
|
1162
|
+
"bytes": 1804,
|
|
1148
1163
|
"imports": [],
|
|
1149
1164
|
"format": "esm"
|
|
1150
1165
|
},
|
|
@@ -1159,6 +1174,53 @@
|
|
|
1159
1174
|
],
|
|
1160
1175
|
"format": "esm"
|
|
1161
1176
|
},
|
|
1177
|
+
"src/core/sql.ts": {
|
|
1178
|
+
"bytes": 1991,
|
|
1179
|
+
"imports": [
|
|
1180
|
+
{
|
|
1181
|
+
"path": "src/lexer/lexer.ts",
|
|
1182
|
+
"kind": "import-statement",
|
|
1183
|
+
"original": "../lexer/lexer"
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"path": "src/parser/parser.ts",
|
|
1187
|
+
"kind": "import-statement",
|
|
1188
|
+
"original": "../parser/parser"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"path": "src/core/scriptHeader.ts",
|
|
1192
|
+
"kind": "import-statement",
|
|
1193
|
+
"original": "./scriptHeader"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"path": "src/core/statementValidation.ts",
|
|
1197
|
+
"kind": "import-statement",
|
|
1198
|
+
"original": "./statementValidation"
|
|
1199
|
+
}
|
|
1200
|
+
],
|
|
1201
|
+
"format": "esm"
|
|
1202
|
+
},
|
|
1203
|
+
"src/core/dialect1Validation.ts": {
|
|
1204
|
+
"bytes": 6720,
|
|
1205
|
+
"imports": [
|
|
1206
|
+
{
|
|
1207
|
+
"path": "src/core/relativeDateFunction.ts",
|
|
1208
|
+
"kind": "import-statement",
|
|
1209
|
+
"original": "./relativeDateFunction"
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"path": "src/core/optimization/relativeDateFullScanExactPlan.ts",
|
|
1213
|
+
"kind": "import-statement",
|
|
1214
|
+
"original": "./optimization/relativeDateFullScanExactPlan"
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"path": "src/core/diagnostics.ts",
|
|
1218
|
+
"kind": "import-statement",
|
|
1219
|
+
"original": "./diagnostics"
|
|
1220
|
+
}
|
|
1221
|
+
],
|
|
1222
|
+
"format": "esm"
|
|
1223
|
+
},
|
|
1162
1224
|
"src/core/dmlPrevalidation.ts": {
|
|
1163
1225
|
"bytes": 3780,
|
|
1164
1226
|
"imports": [],
|
|
@@ -1384,7 +1446,7 @@
|
|
|
1384
1446
|
"format": "esm"
|
|
1385
1447
|
},
|
|
1386
1448
|
"src/execute.ts": {
|
|
1387
|
-
"bytes":
|
|
1449
|
+
"bytes": 593690,
|
|
1388
1450
|
"imports": [
|
|
1389
1451
|
{
|
|
1390
1452
|
"path": "src/lexer/lexer.ts",
|
|
@@ -1647,9 +1709,19 @@
|
|
|
1647
1709
|
"original": "./engine/evalFunc"
|
|
1648
1710
|
},
|
|
1649
1711
|
{
|
|
1650
|
-
"path": "src/core/
|
|
1712
|
+
"path": "src/core/sql.ts",
|
|
1651
1713
|
"kind": "import-statement",
|
|
1652
|
-
"original": "./core/
|
|
1714
|
+
"original": "./core/sql"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"path": "src/core/asOfClock.ts",
|
|
1718
|
+
"kind": "import-statement",
|
|
1719
|
+
"original": "./core/asOfClock"
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"path": "src/core/dialect1Validation.ts",
|
|
1723
|
+
"kind": "import-statement",
|
|
1724
|
+
"original": "./core/dialect1Validation"
|
|
1653
1725
|
},
|
|
1654
1726
|
{
|
|
1655
1727
|
"path": "src/core/dmlValidationCandidates.ts",
|
|
@@ -1938,27 +2010,6 @@
|
|
|
1938
2010
|
],
|
|
1939
2011
|
"format": "esm"
|
|
1940
2012
|
},
|
|
1941
|
-
"src/core/sql.ts": {
|
|
1942
|
-
"bytes": 867,
|
|
1943
|
-
"imports": [
|
|
1944
|
-
{
|
|
1945
|
-
"path": "src/lexer/lexer.ts",
|
|
1946
|
-
"kind": "import-statement",
|
|
1947
|
-
"original": "../lexer/lexer"
|
|
1948
|
-
},
|
|
1949
|
-
{
|
|
1950
|
-
"path": "src/parser/parser.ts",
|
|
1951
|
-
"kind": "import-statement",
|
|
1952
|
-
"original": "../parser/parser"
|
|
1953
|
-
},
|
|
1954
|
-
{
|
|
1955
|
-
"path": "src/core/statementValidation.ts",
|
|
1956
|
-
"kind": "import-statement",
|
|
1957
|
-
"original": "./statementValidation"
|
|
1958
|
-
}
|
|
1959
|
-
],
|
|
1960
|
-
"format": "esm"
|
|
1961
|
-
},
|
|
1962
2013
|
"src/core/applyGuard.ts": {
|
|
1963
2014
|
"bytes": 638,
|
|
1964
2015
|
"imports": [],
|
|
@@ -2133,10 +2184,10 @@
|
|
|
2133
2184
|
"bytesInOutput": 303
|
|
2134
2185
|
},
|
|
2135
2186
|
"src/core/grouping.ts": {
|
|
2136
|
-
"bytesInOutput":
|
|
2187
|
+
"bytesInOutput": 1280
|
|
2137
2188
|
},
|
|
2138
2189
|
"src/core/dmlGuard.ts": {
|
|
2139
|
-
"bytesInOutput":
|
|
2190
|
+
"bytesInOutput": 3460
|
|
2140
2191
|
},
|
|
2141
2192
|
"src/core/relativeDateFunction.ts": {
|
|
2142
2193
|
"bytesInOutput": 451
|
|
@@ -2166,13 +2217,13 @@
|
|
|
2166
2217
|
"bytesInOutput": 3124
|
|
2167
2218
|
},
|
|
2168
2219
|
"src/core/aggregateDependencyValidation.ts": {
|
|
2169
|
-
"bytesInOutput":
|
|
2220
|
+
"bytesInOutput": 8228
|
|
2170
2221
|
},
|
|
2171
2222
|
"src/core/groupingValidation.ts": {
|
|
2172
|
-
"bytesInOutput":
|
|
2223
|
+
"bytesInOutput": 3811
|
|
2173
2224
|
},
|
|
2174
2225
|
"src/converter/selectToKintone.ts": {
|
|
2175
|
-
"bytesInOutput":
|
|
2226
|
+
"bytesInOutput": 10148
|
|
2176
2227
|
},
|
|
2177
2228
|
"src/core/cteInlining.ts": {
|
|
2178
2229
|
"bytesInOutput": 1224
|
|
@@ -2216,8 +2267,11 @@
|
|
|
2216
2267
|
"src/core/statementValidation.ts": {
|
|
2217
2268
|
"bytesInOutput": 239
|
|
2218
2269
|
},
|
|
2270
|
+
"src/core/asOfClock.ts": {
|
|
2271
|
+
"bytesInOutput": 1162
|
|
2272
|
+
},
|
|
2219
2273
|
"src/core/batch.ts": {
|
|
2220
|
-
"bytesInOutput":
|
|
2274
|
+
"bytesInOutput": 6386
|
|
2221
2275
|
},
|
|
2222
2276
|
"src/lexer/tokens.ts": {
|
|
2223
2277
|
"bytesInOutput": 2328
|
|
@@ -2226,7 +2280,7 @@
|
|
|
2226
2280
|
"bytesInOutput": 5906
|
|
2227
2281
|
},
|
|
2228
2282
|
"src/parser/parser.ts": {
|
|
2229
|
-
"bytesInOutput":
|
|
2283
|
+
"bytesInOutput": 128344
|
|
2230
2284
|
},
|
|
2231
2285
|
"src/core/scalarCompare.ts": {
|
|
2232
2286
|
"bytesInOutput": 2804
|
|
@@ -2304,7 +2358,7 @@
|
|
|
2304
2358
|
"bytesInOutput": 122
|
|
2305
2359
|
},
|
|
2306
2360
|
"src/core/explainMetadata.ts": {
|
|
2307
|
-
"bytesInOutput":
|
|
2361
|
+
"bytesInOutput": 627
|
|
2308
2362
|
},
|
|
2309
2363
|
"src/core/optimization/sharedPlanner.ts": {
|
|
2310
2364
|
"bytesInOutput": 339
|
|
@@ -2334,17 +2388,23 @@
|
|
|
2334
2388
|
"bytesInOutput": 1223
|
|
2335
2389
|
},
|
|
2336
2390
|
"src/engine/process.ts": {
|
|
2337
|
-
"bytesInOutput":
|
|
2391
|
+
"bytesInOutput": 27972
|
|
2338
2392
|
},
|
|
2339
2393
|
"src/converter/subtableAdapter.ts": {
|
|
2340
2394
|
"bytesInOutput": 643
|
|
2341
2395
|
},
|
|
2342
2396
|
"src/core/diagnostics.ts": {
|
|
2343
|
-
"bytesInOutput":
|
|
2397
|
+
"bytesInOutput": 755
|
|
2344
2398
|
},
|
|
2345
2399
|
"src/core/scriptHeader.ts": {
|
|
2346
2400
|
"bytesInOutput": 1831
|
|
2347
2401
|
},
|
|
2402
|
+
"src/core/sql.ts": {
|
|
2403
|
+
"bytesInOutput": 492
|
|
2404
|
+
},
|
|
2405
|
+
"src/core/dialect1Validation.ts": {
|
|
2406
|
+
"bytesInOutput": 3025
|
|
2407
|
+
},
|
|
2348
2408
|
"src/core/dmlPrevalidation.ts": {
|
|
2349
2409
|
"bytesInOutput": 1136
|
|
2350
2410
|
},
|
|
@@ -2400,7 +2460,7 @@
|
|
|
2400
2460
|
"bytesInOutput": 412
|
|
2401
2461
|
},
|
|
2402
2462
|
"src/execute.ts": {
|
|
2403
|
-
"bytesInOutput":
|
|
2463
|
+
"bytesInOutput": 235779
|
|
2404
2464
|
},
|
|
2405
2465
|
"src/engine-library/errors.ts": {
|
|
2406
2466
|
"bytesInOutput": 1441
|
|
@@ -2444,9 +2504,6 @@
|
|
|
2444
2504
|
"src/engine-library/resultMapping.ts": {
|
|
2445
2505
|
"bytesInOutput": 903
|
|
2446
2506
|
},
|
|
2447
|
-
"src/core/sql.ts": {
|
|
2448
|
-
"bytesInOutput": 186
|
|
2449
|
-
},
|
|
2450
2507
|
"src/core/applyGuard.ts": {
|
|
2451
2508
|
"bytesInOutput": 236
|
|
2452
2509
|
},
|
|
@@ -2460,7 +2517,7 @@
|
|
|
2460
2517
|
"bytesInOutput": 1406
|
|
2461
2518
|
}
|
|
2462
2519
|
},
|
|
2463
|
-
"bytes":
|
|
2520
|
+
"bytes": 680144
|
|
2464
2521
|
}
|
|
2465
2522
|
}
|
|
2466
2523
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"format": "esm"
|
|
12
12
|
},
|
|
13
13
|
"src/types/ast.ts": {
|
|
14
|
-
"bytes":
|
|
14
|
+
"bytes": 38224,
|
|
15
15
|
"imports": [
|
|
16
16
|
{
|
|
17
17
|
"path": "src/core/exactDecimal.ts",
|
|
@@ -420,8 +420,13 @@
|
|
|
420
420
|
],
|
|
421
421
|
"format": "esm"
|
|
422
422
|
},
|
|
423
|
+
"src/core/asOfClock.ts": {
|
|
424
|
+
"bytes": 2891,
|
|
425
|
+
"imports": [],
|
|
426
|
+
"format": "esm"
|
|
427
|
+
},
|
|
423
428
|
"src/core/batch.ts": {
|
|
424
|
-
"bytes":
|
|
429
|
+
"bytes": 21010,
|
|
425
430
|
"imports": [
|
|
426
431
|
{
|
|
427
432
|
"path": "src/core/dmlGuard.ts",
|
|
@@ -452,6 +457,11 @@
|
|
|
452
457
|
"path": "src/core/groupingValidation.ts",
|
|
453
458
|
"kind": "import-statement",
|
|
454
459
|
"original": "./groupingValidation"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"path": "src/core/asOfClock.ts",
|
|
463
|
+
"kind": "import-statement",
|
|
464
|
+
"original": "./asOfClock"
|
|
455
465
|
}
|
|
456
466
|
],
|
|
457
467
|
"format": "esm"
|
|
@@ -473,7 +483,7 @@
|
|
|
473
483
|
"format": "esm"
|
|
474
484
|
},
|
|
475
485
|
"src/parser/parser.ts": {
|
|
476
|
-
"bytes":
|
|
486
|
+
"bytes": 217567,
|
|
477
487
|
"imports": [
|
|
478
488
|
{
|
|
479
489
|
"path": "src/lexer/tokens.ts",
|
|
@@ -490,6 +500,11 @@
|
|
|
490
500
|
"kind": "import-statement",
|
|
491
501
|
"original": "../core/grouping"
|
|
492
502
|
},
|
|
503
|
+
{
|
|
504
|
+
"path": "src/core/asOfClock.ts",
|
|
505
|
+
"kind": "import-statement",
|
|
506
|
+
"original": "../core/asOfClock"
|
|
507
|
+
},
|
|
493
508
|
{
|
|
494
509
|
"path": "src/core/aggregateExpression.ts",
|
|
495
510
|
"kind": "import-statement",
|
|
@@ -1144,7 +1159,7 @@
|
|
|
1144
1159
|
"format": "esm"
|
|
1145
1160
|
},
|
|
1146
1161
|
"src/core/diagnostics.ts": {
|
|
1147
|
-
"bytes":
|
|
1162
|
+
"bytes": 1804,
|
|
1148
1163
|
"imports": [],
|
|
1149
1164
|
"format": "esm"
|
|
1150
1165
|
},
|
|
@@ -1159,6 +1174,53 @@
|
|
|
1159
1174
|
],
|
|
1160
1175
|
"format": "esm"
|
|
1161
1176
|
},
|
|
1177
|
+
"src/core/sql.ts": {
|
|
1178
|
+
"bytes": 1991,
|
|
1179
|
+
"imports": [
|
|
1180
|
+
{
|
|
1181
|
+
"path": "src/lexer/lexer.ts",
|
|
1182
|
+
"kind": "import-statement",
|
|
1183
|
+
"original": "../lexer/lexer"
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"path": "src/parser/parser.ts",
|
|
1187
|
+
"kind": "import-statement",
|
|
1188
|
+
"original": "../parser/parser"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"path": "src/core/scriptHeader.ts",
|
|
1192
|
+
"kind": "import-statement",
|
|
1193
|
+
"original": "./scriptHeader"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"path": "src/core/statementValidation.ts",
|
|
1197
|
+
"kind": "import-statement",
|
|
1198
|
+
"original": "./statementValidation"
|
|
1199
|
+
}
|
|
1200
|
+
],
|
|
1201
|
+
"format": "esm"
|
|
1202
|
+
},
|
|
1203
|
+
"src/core/dialect1Validation.ts": {
|
|
1204
|
+
"bytes": 6720,
|
|
1205
|
+
"imports": [
|
|
1206
|
+
{
|
|
1207
|
+
"path": "src/core/relativeDateFunction.ts",
|
|
1208
|
+
"kind": "import-statement",
|
|
1209
|
+
"original": "./relativeDateFunction"
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"path": "src/core/optimization/relativeDateFullScanExactPlan.ts",
|
|
1213
|
+
"kind": "import-statement",
|
|
1214
|
+
"original": "./optimization/relativeDateFullScanExactPlan"
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"path": "src/core/diagnostics.ts",
|
|
1218
|
+
"kind": "import-statement",
|
|
1219
|
+
"original": "./diagnostics"
|
|
1220
|
+
}
|
|
1221
|
+
],
|
|
1222
|
+
"format": "esm"
|
|
1223
|
+
},
|
|
1162
1224
|
"src/core/dmlPrevalidation.ts": {
|
|
1163
1225
|
"bytes": 3780,
|
|
1164
1226
|
"imports": [],
|
|
@@ -1384,7 +1446,7 @@
|
|
|
1384
1446
|
"format": "esm"
|
|
1385
1447
|
},
|
|
1386
1448
|
"src/execute.ts": {
|
|
1387
|
-
"bytes":
|
|
1449
|
+
"bytes": 593690,
|
|
1388
1450
|
"imports": [
|
|
1389
1451
|
{
|
|
1390
1452
|
"path": "src/lexer/lexer.ts",
|
|
@@ -1647,9 +1709,19 @@
|
|
|
1647
1709
|
"original": "./engine/evalFunc"
|
|
1648
1710
|
},
|
|
1649
1711
|
{
|
|
1650
|
-
"path": "src/core/
|
|
1712
|
+
"path": "src/core/sql.ts",
|
|
1651
1713
|
"kind": "import-statement",
|
|
1652
|
-
"original": "./core/
|
|
1714
|
+
"original": "./core/sql"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"path": "src/core/asOfClock.ts",
|
|
1718
|
+
"kind": "import-statement",
|
|
1719
|
+
"original": "./core/asOfClock"
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"path": "src/core/dialect1Validation.ts",
|
|
1723
|
+
"kind": "import-statement",
|
|
1724
|
+
"original": "./core/dialect1Validation"
|
|
1653
1725
|
},
|
|
1654
1726
|
{
|
|
1655
1727
|
"path": "src/core/dmlValidationCandidates.ts",
|
|
@@ -1938,27 +2010,6 @@
|
|
|
1938
2010
|
],
|
|
1939
2011
|
"format": "esm"
|
|
1940
2012
|
},
|
|
1941
|
-
"src/core/sql.ts": {
|
|
1942
|
-
"bytes": 867,
|
|
1943
|
-
"imports": [
|
|
1944
|
-
{
|
|
1945
|
-
"path": "src/lexer/lexer.ts",
|
|
1946
|
-
"kind": "import-statement",
|
|
1947
|
-
"original": "../lexer/lexer"
|
|
1948
|
-
},
|
|
1949
|
-
{
|
|
1950
|
-
"path": "src/parser/parser.ts",
|
|
1951
|
-
"kind": "import-statement",
|
|
1952
|
-
"original": "../parser/parser"
|
|
1953
|
-
},
|
|
1954
|
-
{
|
|
1955
|
-
"path": "src/core/statementValidation.ts",
|
|
1956
|
-
"kind": "import-statement",
|
|
1957
|
-
"original": "./statementValidation"
|
|
1958
|
-
}
|
|
1959
|
-
],
|
|
1960
|
-
"format": "esm"
|
|
1961
|
-
},
|
|
1962
2013
|
"src/core/applyGuard.ts": {
|
|
1963
2014
|
"bytes": 638,
|
|
1964
2015
|
"imports": [],
|
|
@@ -2137,10 +2188,10 @@
|
|
|
2137
2188
|
"bytesInOutput": 303
|
|
2138
2189
|
},
|
|
2139
2190
|
"src/core/grouping.ts": {
|
|
2140
|
-
"bytesInOutput":
|
|
2191
|
+
"bytesInOutput": 1280
|
|
2141
2192
|
},
|
|
2142
2193
|
"src/core/dmlGuard.ts": {
|
|
2143
|
-
"bytesInOutput":
|
|
2194
|
+
"bytesInOutput": 3460
|
|
2144
2195
|
},
|
|
2145
2196
|
"src/core/relativeDateFunction.ts": {
|
|
2146
2197
|
"bytesInOutput": 451
|
|
@@ -2170,13 +2221,13 @@
|
|
|
2170
2221
|
"bytesInOutput": 3124
|
|
2171
2222
|
},
|
|
2172
2223
|
"src/core/aggregateDependencyValidation.ts": {
|
|
2173
|
-
"bytesInOutput":
|
|
2224
|
+
"bytesInOutput": 8228
|
|
2174
2225
|
},
|
|
2175
2226
|
"src/core/groupingValidation.ts": {
|
|
2176
|
-
"bytesInOutput":
|
|
2227
|
+
"bytesInOutput": 3811
|
|
2177
2228
|
},
|
|
2178
2229
|
"src/converter/selectToKintone.ts": {
|
|
2179
|
-
"bytesInOutput":
|
|
2230
|
+
"bytesInOutput": 10148
|
|
2180
2231
|
},
|
|
2181
2232
|
"src/core/cteInlining.ts": {
|
|
2182
2233
|
"bytesInOutput": 1224
|
|
@@ -2220,8 +2271,11 @@
|
|
|
2220
2271
|
"src/core/statementValidation.ts": {
|
|
2221
2272
|
"bytesInOutput": 239
|
|
2222
2273
|
},
|
|
2274
|
+
"src/core/asOfClock.ts": {
|
|
2275
|
+
"bytesInOutput": 1162
|
|
2276
|
+
},
|
|
2223
2277
|
"src/core/batch.ts": {
|
|
2224
|
-
"bytesInOutput":
|
|
2278
|
+
"bytesInOutput": 6386
|
|
2225
2279
|
},
|
|
2226
2280
|
"src/lexer/tokens.ts": {
|
|
2227
2281
|
"bytesInOutput": 2328
|
|
@@ -2230,7 +2284,7 @@
|
|
|
2230
2284
|
"bytesInOutput": 5906
|
|
2231
2285
|
},
|
|
2232
2286
|
"src/parser/parser.ts": {
|
|
2233
|
-
"bytesInOutput":
|
|
2287
|
+
"bytesInOutput": 128344
|
|
2234
2288
|
},
|
|
2235
2289
|
"src/core/scalarCompare.ts": {
|
|
2236
2290
|
"bytesInOutput": 2804
|
|
@@ -2308,7 +2362,7 @@
|
|
|
2308
2362
|
"bytesInOutput": 122
|
|
2309
2363
|
},
|
|
2310
2364
|
"src/core/explainMetadata.ts": {
|
|
2311
|
-
"bytesInOutput":
|
|
2365
|
+
"bytesInOutput": 627
|
|
2312
2366
|
},
|
|
2313
2367
|
"src/core/optimization/sharedPlanner.ts": {
|
|
2314
2368
|
"bytesInOutput": 339
|
|
@@ -2338,17 +2392,23 @@
|
|
|
2338
2392
|
"bytesInOutput": 1223
|
|
2339
2393
|
},
|
|
2340
2394
|
"src/engine/process.ts": {
|
|
2341
|
-
"bytesInOutput":
|
|
2395
|
+
"bytesInOutput": 27972
|
|
2342
2396
|
},
|
|
2343
2397
|
"src/converter/subtableAdapter.ts": {
|
|
2344
2398
|
"bytesInOutput": 643
|
|
2345
2399
|
},
|
|
2346
2400
|
"src/core/diagnostics.ts": {
|
|
2347
|
-
"bytesInOutput":
|
|
2401
|
+
"bytesInOutput": 755
|
|
2348
2402
|
},
|
|
2349
2403
|
"src/core/scriptHeader.ts": {
|
|
2350
2404
|
"bytesInOutput": 1831
|
|
2351
2405
|
},
|
|
2406
|
+
"src/core/sql.ts": {
|
|
2407
|
+
"bytesInOutput": 492
|
|
2408
|
+
},
|
|
2409
|
+
"src/core/dialect1Validation.ts": {
|
|
2410
|
+
"bytesInOutput": 3025
|
|
2411
|
+
},
|
|
2352
2412
|
"src/core/dmlPrevalidation.ts": {
|
|
2353
2413
|
"bytesInOutput": 1136
|
|
2354
2414
|
},
|
|
@@ -2404,7 +2464,7 @@
|
|
|
2404
2464
|
"bytesInOutput": 412
|
|
2405
2465
|
},
|
|
2406
2466
|
"src/execute.ts": {
|
|
2407
|
-
"bytesInOutput":
|
|
2467
|
+
"bytesInOutput": 235779
|
|
2408
2468
|
},
|
|
2409
2469
|
"src/engine-library/errors.ts": {
|
|
2410
2470
|
"bytesInOutput": 1441
|
|
@@ -2448,9 +2508,6 @@
|
|
|
2448
2508
|
"src/engine-library/resultMapping.ts": {
|
|
2449
2509
|
"bytesInOutput": 903
|
|
2450
2510
|
},
|
|
2451
|
-
"src/core/sql.ts": {
|
|
2452
|
-
"bytesInOutput": 186
|
|
2453
|
-
},
|
|
2454
2511
|
"src/core/applyGuard.ts": {
|
|
2455
2512
|
"bytesInOutput": 236
|
|
2456
2513
|
},
|
|
@@ -2467,7 +2524,7 @@
|
|
|
2467
2524
|
"bytesInOutput": 16
|
|
2468
2525
|
}
|
|
2469
2526
|
},
|
|
2470
|
-
"bytes":
|
|
2527
|
+
"bytes": 679599
|
|
2471
2528
|
}
|
|
2472
2529
|
}
|
|
2473
2530
|
}
|