@rex0220/kintone-sql-tools 3.28.0 → 3.30.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 +8 -2
- package/dist-cli/ksql.js +239 -29
- package/dist-engine/batch.d.ts +13 -0
- package/dist-engine/errors.d.ts +5 -0
- package/dist-engine/index.cjs +10 -10
- package/dist-engine/index.d.ts +3 -2
- package/dist-engine/index.mjs +10 -10
- package/dist-engine/ksql-engine.umd.js +10 -10
- package/dist-engine/meta/bundle-baseline.json +10 -10
- package/dist-engine/meta/cjs.json +118 -26
- package/dist-engine/meta/esm.json +118 -25
- package/dist-engine/meta/umd.json +120 -28
- package/dist-engine/publicTypes.d.ts +98 -0
- package/dist-engine/query.d.ts +8 -0
- package/dist-mcp/ksql-mcp.js +254 -40
- package/dist-mcpb/ksql-mcp.mcpb +0 -0
- package/package.json +4 -3
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-07-
|
|
2
|
+
"generatedAt": "2026-07-28T01:41:46.779Z",
|
|
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": 96,
|
|
7
|
+
"minifiedBytes": 527726,
|
|
8
|
+
"gzipBytes": 143780,
|
|
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": 96,
|
|
27
|
+
"minifiedBytes": 527181,
|
|
28
|
+
"gzipBytes": 143448,
|
|
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": 98,
|
|
47
|
+
"minifiedBytes": 528205,
|
|
48
|
+
"gzipBytes": 143795,
|
|
49
49
|
"forbidden": {
|
|
50
50
|
"mcp-instructions": [],
|
|
51
51
|
"src-mcp": [],
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"format": "esm"
|
|
96
96
|
},
|
|
97
97
|
"src/core/dmlGuard.ts": {
|
|
98
|
-
"bytes":
|
|
98
|
+
"bytes": 9379,
|
|
99
99
|
"imports": [
|
|
100
100
|
{
|
|
101
101
|
"path": "src/types/ast.ts",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"format": "esm"
|
|
160
160
|
},
|
|
161
161
|
"src/converter/selectToKintone.ts": {
|
|
162
|
-
"bytes":
|
|
162
|
+
"bytes": 29239,
|
|
163
163
|
"imports": [
|
|
164
164
|
{
|
|
165
165
|
"path": "../types/ast",
|
|
@@ -560,7 +560,7 @@
|
|
|
560
560
|
"format": "esm"
|
|
561
561
|
},
|
|
562
562
|
"src/core/existingRecordValidation.ts": {
|
|
563
|
-
"bytes":
|
|
563
|
+
"bytes": 6562,
|
|
564
564
|
"imports": [
|
|
565
565
|
{
|
|
566
566
|
"path": "src/core/dmlValidationCandidates.ts",
|
|
@@ -1161,7 +1161,7 @@
|
|
|
1161
1161
|
"format": "esm"
|
|
1162
1162
|
},
|
|
1163
1163
|
"src/execute.ts": {
|
|
1164
|
-
"bytes":
|
|
1164
|
+
"bytes": 461839,
|
|
1165
1165
|
"imports": [
|
|
1166
1166
|
{
|
|
1167
1167
|
"path": "src/lexer/lexer.ts",
|
|
@@ -1497,7 +1497,7 @@
|
|
|
1497
1497
|
"format": "esm"
|
|
1498
1498
|
},
|
|
1499
1499
|
"src/engine-library/errors.ts": {
|
|
1500
|
-
"bytes":
|
|
1500
|
+
"bytes": 3714,
|
|
1501
1501
|
"imports": [
|
|
1502
1502
|
{
|
|
1503
1503
|
"path": "src/api/fetchAll.ts",
|
|
@@ -1623,10 +1623,21 @@
|
|
|
1623
1623
|
"format": "esm"
|
|
1624
1624
|
},
|
|
1625
1625
|
"src/engine-library/options.ts": {
|
|
1626
|
-
"bytes":
|
|
1626
|
+
"bytes": 5024,
|
|
1627
1627
|
"imports": [],
|
|
1628
1628
|
"format": "esm"
|
|
1629
1629
|
},
|
|
1630
|
+
"src/engine-library/resultMapping.ts": {
|
|
1631
|
+
"bytes": 1867,
|
|
1632
|
+
"imports": [
|
|
1633
|
+
{
|
|
1634
|
+
"path": "src/execute.ts",
|
|
1635
|
+
"kind": "import-statement",
|
|
1636
|
+
"original": "../execute"
|
|
1637
|
+
}
|
|
1638
|
+
],
|
|
1639
|
+
"format": "esm"
|
|
1640
|
+
},
|
|
1630
1641
|
"src/core/sql.ts": {
|
|
1631
1642
|
"bytes": 858,
|
|
1632
1643
|
"imports": [
|
|
@@ -1648,14 +1659,29 @@
|
|
|
1648
1659
|
],
|
|
1649
1660
|
"format": "esm"
|
|
1650
1661
|
},
|
|
1662
|
+
"src/core/applyGuard.ts": {
|
|
1663
|
+
"bytes": 638,
|
|
1664
|
+
"imports": [],
|
|
1665
|
+
"format": "esm"
|
|
1666
|
+
},
|
|
1651
1667
|
"src/engine-library/statementGuard.ts": {
|
|
1652
|
-
"bytes":
|
|
1668
|
+
"bytes": 4597,
|
|
1653
1669
|
"imports": [
|
|
1654
1670
|
{
|
|
1655
1671
|
"path": "src/core/sql.ts",
|
|
1656
1672
|
"kind": "import-statement",
|
|
1657
1673
|
"original": "../core/sql"
|
|
1658
1674
|
},
|
|
1675
|
+
{
|
|
1676
|
+
"path": "src/core/applyGuard.ts",
|
|
1677
|
+
"kind": "import-statement",
|
|
1678
|
+
"original": "../core/applyGuard"
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
"path": "src/core/dmlGuard.ts",
|
|
1682
|
+
"kind": "import-statement",
|
|
1683
|
+
"original": "../core/dmlGuard"
|
|
1684
|
+
},
|
|
1659
1685
|
{
|
|
1660
1686
|
"path": "src/core/klikeValidation.ts",
|
|
1661
1687
|
"kind": "import-statement",
|
|
@@ -1669,8 +1695,49 @@
|
|
|
1669
1695
|
],
|
|
1670
1696
|
"format": "esm"
|
|
1671
1697
|
},
|
|
1698
|
+
"src/engine-library/batch.ts": {
|
|
1699
|
+
"bytes": 3529,
|
|
1700
|
+
"imports": [
|
|
1701
|
+
{
|
|
1702
|
+
"path": "src/execute.ts",
|
|
1703
|
+
"kind": "import-statement",
|
|
1704
|
+
"original": "../execute"
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
"path": "src/engine-library/errors.ts",
|
|
1708
|
+
"kind": "import-statement",
|
|
1709
|
+
"original": "./errors"
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
"path": "src/engine-library/cursorScope.ts",
|
|
1713
|
+
"kind": "import-statement",
|
|
1714
|
+
"original": "./cursorScope"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"path": "src/engine-library/options.ts",
|
|
1718
|
+
"kind": "import-statement",
|
|
1719
|
+
"original": "./options"
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"path": "src/engine-library/readonlyClient.ts",
|
|
1723
|
+
"kind": "import-statement",
|
|
1724
|
+
"original": "./readonlyClient"
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
"path": "src/engine-library/resultMapping.ts",
|
|
1728
|
+
"kind": "import-statement",
|
|
1729
|
+
"original": "./resultMapping"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"path": "src/engine-library/statementGuard.ts",
|
|
1733
|
+
"kind": "import-statement",
|
|
1734
|
+
"original": "./statementGuard"
|
|
1735
|
+
}
|
|
1736
|
+
],
|
|
1737
|
+
"format": "esm"
|
|
1738
|
+
},
|
|
1672
1739
|
"src/engine-library/query.ts": {
|
|
1673
|
-
"bytes":
|
|
1740
|
+
"bytes": 2547,
|
|
1674
1741
|
"imports": [
|
|
1675
1742
|
{
|
|
1676
1743
|
"path": "src/execute.ts",
|
|
@@ -1697,6 +1764,11 @@
|
|
|
1697
1764
|
"kind": "import-statement",
|
|
1698
1765
|
"original": "./readonlyClient"
|
|
1699
1766
|
},
|
|
1767
|
+
{
|
|
1768
|
+
"path": "src/engine-library/resultMapping.ts",
|
|
1769
|
+
"kind": "import-statement",
|
|
1770
|
+
"original": "./resultMapping"
|
|
1771
|
+
},
|
|
1700
1772
|
{
|
|
1701
1773
|
"path": "src/engine-library/statementGuard.ts",
|
|
1702
1774
|
"kind": "import-statement",
|
|
@@ -1706,7 +1778,7 @@
|
|
|
1706
1778
|
"format": "esm"
|
|
1707
1779
|
},
|
|
1708
1780
|
"src/engine-library/index.ts": {
|
|
1709
|
-
"bytes":
|
|
1781
|
+
"bytes": 1160,
|
|
1710
1782
|
"imports": [
|
|
1711
1783
|
{
|
|
1712
1784
|
"path": "src/engine-library/errors.ts",
|
|
@@ -1718,6 +1790,11 @@
|
|
|
1718
1790
|
"kind": "import-statement",
|
|
1719
1791
|
"original": "./browserClient"
|
|
1720
1792
|
},
|
|
1793
|
+
{
|
|
1794
|
+
"path": "src/engine-library/batch.ts",
|
|
1795
|
+
"kind": "import-statement",
|
|
1796
|
+
"original": "./batch"
|
|
1797
|
+
},
|
|
1721
1798
|
{
|
|
1722
1799
|
"path": "src/engine-library/query.ts",
|
|
1723
1800
|
"kind": "import-statement",
|
|
@@ -1734,7 +1811,7 @@
|
|
|
1734
1811
|
"entryPoint": "src/engine-library/index.ts",
|
|
1735
1812
|
"inputs": {
|
|
1736
1813
|
"src/engine-library/index.ts": {
|
|
1737
|
-
"bytesInOutput":
|
|
1814
|
+
"bytesInOutput": 182
|
|
1738
1815
|
},
|
|
1739
1816
|
"src/api/fetchAll.ts": {
|
|
1740
1817
|
"bytesInOutput": 2625
|
|
@@ -1752,7 +1829,7 @@
|
|
|
1752
1829
|
"bytesInOutput": 139
|
|
1753
1830
|
},
|
|
1754
1831
|
"src/core/grouping.ts": {
|
|
1755
|
-
"bytesInOutput":
|
|
1832
|
+
"bytesInOutput": 1284
|
|
1756
1833
|
},
|
|
1757
1834
|
"src/core/aggregateExpression.ts": {
|
|
1758
1835
|
"bytesInOutput": 2592
|
|
@@ -1764,7 +1841,7 @@
|
|
|
1764
1841
|
"bytesInOutput": 92192
|
|
1765
1842
|
},
|
|
1766
1843
|
"src/core/dmlGuard.ts": {
|
|
1767
|
-
"bytesInOutput":
|
|
1844
|
+
"bytesInOutput": 2857
|
|
1768
1845
|
},
|
|
1769
1846
|
"src/core/applyPatchScope.ts": {
|
|
1770
1847
|
"bytesInOutput": 12612
|
|
@@ -1779,7 +1856,7 @@
|
|
|
1779
1856
|
"bytesInOutput": 5075
|
|
1780
1857
|
},
|
|
1781
1858
|
"src/converter/selectToKintone.ts": {
|
|
1782
|
-
"bytesInOutput":
|
|
1859
|
+
"bytesInOutput": 9186
|
|
1783
1860
|
},
|
|
1784
1861
|
"src/core/cteInlining.ts": {
|
|
1785
1862
|
"bytesInOutput": 1224
|
|
@@ -1800,7 +1877,10 @@
|
|
|
1800
1877
|
"bytesInOutput": 559
|
|
1801
1878
|
},
|
|
1802
1879
|
"src/core/groupingValidation.ts": {
|
|
1803
|
-
"bytesInOutput":
|
|
1880
|
+
"bytesInOutput": 5175
|
|
1881
|
+
},
|
|
1882
|
+
"src/core/batch.ts": {
|
|
1883
|
+
"bytesInOutput": 5518
|
|
1804
1884
|
},
|
|
1805
1885
|
"src/core/fieldSemantics.ts": {
|
|
1806
1886
|
"bytesInOutput": 1368
|
|
@@ -1812,7 +1892,7 @@
|
|
|
1812
1892
|
"bytesInOutput": 11162
|
|
1813
1893
|
},
|
|
1814
1894
|
"src/engine/evalWhere.ts": {
|
|
1815
|
-
"bytesInOutput":
|
|
1895
|
+
"bytesInOutput": 5752
|
|
1816
1896
|
},
|
|
1817
1897
|
"src/core/dmlCustomCheck.ts": {
|
|
1818
1898
|
"bytesInOutput": 1250
|
|
@@ -1827,7 +1907,7 @@
|
|
|
1827
1907
|
"bytesInOutput": 9946
|
|
1828
1908
|
},
|
|
1829
1909
|
"src/converter/applyPatchToKintone.ts": {
|
|
1830
|
-
"bytesInOutput":
|
|
1910
|
+
"bytesInOutput": 4501
|
|
1831
1911
|
},
|
|
1832
1912
|
"src/core/numberPrecision.ts": {
|
|
1833
1913
|
"bytesInOutput": 870
|
|
@@ -1839,7 +1919,7 @@
|
|
|
1839
1919
|
"bytesInOutput": 2779
|
|
1840
1920
|
},
|
|
1841
1921
|
"src/core/existingRecordValidation.ts": {
|
|
1842
|
-
"bytesInOutput":
|
|
1922
|
+
"bytesInOutput": 3491
|
|
1843
1923
|
},
|
|
1844
1924
|
"src/core/postImageValidation.ts": {
|
|
1845
1925
|
"bytesInOutput": 2198
|
|
@@ -1865,11 +1945,14 @@
|
|
|
1865
1945
|
"src/core/applyUpsertExecutePrepared.ts": {
|
|
1866
1946
|
"bytesInOutput": 1487
|
|
1867
1947
|
},
|
|
1948
|
+
"src/core/batchVariables.ts": {
|
|
1949
|
+
"bytesInOutput": 667
|
|
1950
|
+
},
|
|
1868
1951
|
"src/core/outerJoinSearchAbortGuard.ts": {
|
|
1869
1952
|
"bytesInOutput": 366
|
|
1870
1953
|
},
|
|
1871
1954
|
"src/core/explainMetadata.ts": {
|
|
1872
|
-
"bytesInOutput":
|
|
1955
|
+
"bytesInOutput": 627
|
|
1873
1956
|
},
|
|
1874
1957
|
"src/core/optimization/sharedPlanner.ts": {
|
|
1875
1958
|
"bytesInOutput": 339
|
|
@@ -1905,7 +1988,7 @@
|
|
|
1905
1988
|
"bytesInOutput": 2656
|
|
1906
1989
|
},
|
|
1907
1990
|
"src/engine/process.ts": {
|
|
1908
|
-
"bytesInOutput":
|
|
1991
|
+
"bytesInOutput": 19954
|
|
1909
1992
|
},
|
|
1910
1993
|
"src/converter/subtableAdapter.ts": {
|
|
1911
1994
|
"bytesInOutput": 643
|
|
@@ -1965,10 +2048,10 @@
|
|
|
1965
2048
|
"bytesInOutput": 412
|
|
1966
2049
|
},
|
|
1967
2050
|
"src/execute.ts": {
|
|
1968
|
-
"bytesInOutput":
|
|
2051
|
+
"bytesInOutput": 176457
|
|
1969
2052
|
},
|
|
1970
2053
|
"src/engine-library/errors.ts": {
|
|
1971
|
-
"bytesInOutput":
|
|
2054
|
+
"bytesInOutput": 1306
|
|
1972
2055
|
},
|
|
1973
2056
|
"src/api/cursorLeaseManager.ts": {
|
|
1974
2057
|
"bytesInOutput": 1777
|
|
@@ -1995,19 +2078,28 @@
|
|
|
1995
2078
|
"bytesInOutput": 766
|
|
1996
2079
|
},
|
|
1997
2080
|
"src/engine-library/options.ts": {
|
|
1998
|
-
"bytesInOutput":
|
|
2081
|
+
"bytesInOutput": 2212
|
|
2082
|
+
},
|
|
2083
|
+
"src/engine-library/resultMapping.ts": {
|
|
2084
|
+
"bytesInOutput": 777
|
|
1999
2085
|
},
|
|
2000
2086
|
"src/core/sql.ts": {
|
|
2001
|
-
"bytesInOutput":
|
|
2087
|
+
"bytesInOutput": 186
|
|
2088
|
+
},
|
|
2089
|
+
"src/core/applyGuard.ts": {
|
|
2090
|
+
"bytesInOutput": 236
|
|
2002
2091
|
},
|
|
2003
2092
|
"src/engine-library/statementGuard.ts": {
|
|
2004
|
-
"bytesInOutput":
|
|
2093
|
+
"bytesInOutput": 1704
|
|
2094
|
+
},
|
|
2095
|
+
"src/engine-library/batch.ts": {
|
|
2096
|
+
"bytesInOutput": 896
|
|
2005
2097
|
},
|
|
2006
2098
|
"src/engine-library/query.ts": {
|
|
2007
|
-
"bytesInOutput":
|
|
2099
|
+
"bytesInOutput": 603
|
|
2008
2100
|
}
|
|
2009
2101
|
},
|
|
2010
|
-
"bytes":
|
|
2102
|
+
"bytes": 527726
|
|
2011
2103
|
}
|
|
2012
2104
|
}
|
|
2013
2105
|
}
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"format": "esm"
|
|
96
96
|
},
|
|
97
97
|
"src/core/dmlGuard.ts": {
|
|
98
|
-
"bytes":
|
|
98
|
+
"bytes": 9379,
|
|
99
99
|
"imports": [
|
|
100
100
|
{
|
|
101
101
|
"path": "src/types/ast.ts",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"format": "esm"
|
|
160
160
|
},
|
|
161
161
|
"src/converter/selectToKintone.ts": {
|
|
162
|
-
"bytes":
|
|
162
|
+
"bytes": 29239,
|
|
163
163
|
"imports": [
|
|
164
164
|
{
|
|
165
165
|
"path": "../types/ast",
|
|
@@ -560,7 +560,7 @@
|
|
|
560
560
|
"format": "esm"
|
|
561
561
|
},
|
|
562
562
|
"src/core/existingRecordValidation.ts": {
|
|
563
|
-
"bytes":
|
|
563
|
+
"bytes": 6562,
|
|
564
564
|
"imports": [
|
|
565
565
|
{
|
|
566
566
|
"path": "src/core/dmlValidationCandidates.ts",
|
|
@@ -1161,7 +1161,7 @@
|
|
|
1161
1161
|
"format": "esm"
|
|
1162
1162
|
},
|
|
1163
1163
|
"src/execute.ts": {
|
|
1164
|
-
"bytes":
|
|
1164
|
+
"bytes": 461839,
|
|
1165
1165
|
"imports": [
|
|
1166
1166
|
{
|
|
1167
1167
|
"path": "src/lexer/lexer.ts",
|
|
@@ -1497,7 +1497,7 @@
|
|
|
1497
1497
|
"format": "esm"
|
|
1498
1498
|
},
|
|
1499
1499
|
"src/engine-library/errors.ts": {
|
|
1500
|
-
"bytes":
|
|
1500
|
+
"bytes": 3714,
|
|
1501
1501
|
"imports": [
|
|
1502
1502
|
{
|
|
1503
1503
|
"path": "src/api/fetchAll.ts",
|
|
@@ -1623,10 +1623,21 @@
|
|
|
1623
1623
|
"format": "esm"
|
|
1624
1624
|
},
|
|
1625
1625
|
"src/engine-library/options.ts": {
|
|
1626
|
-
"bytes":
|
|
1626
|
+
"bytes": 5024,
|
|
1627
1627
|
"imports": [],
|
|
1628
1628
|
"format": "esm"
|
|
1629
1629
|
},
|
|
1630
|
+
"src/engine-library/resultMapping.ts": {
|
|
1631
|
+
"bytes": 1867,
|
|
1632
|
+
"imports": [
|
|
1633
|
+
{
|
|
1634
|
+
"path": "src/execute.ts",
|
|
1635
|
+
"kind": "import-statement",
|
|
1636
|
+
"original": "../execute"
|
|
1637
|
+
}
|
|
1638
|
+
],
|
|
1639
|
+
"format": "esm"
|
|
1640
|
+
},
|
|
1630
1641
|
"src/core/sql.ts": {
|
|
1631
1642
|
"bytes": 858,
|
|
1632
1643
|
"imports": [
|
|
@@ -1648,14 +1659,29 @@
|
|
|
1648
1659
|
],
|
|
1649
1660
|
"format": "esm"
|
|
1650
1661
|
},
|
|
1662
|
+
"src/core/applyGuard.ts": {
|
|
1663
|
+
"bytes": 638,
|
|
1664
|
+
"imports": [],
|
|
1665
|
+
"format": "esm"
|
|
1666
|
+
},
|
|
1651
1667
|
"src/engine-library/statementGuard.ts": {
|
|
1652
|
-
"bytes":
|
|
1668
|
+
"bytes": 4597,
|
|
1653
1669
|
"imports": [
|
|
1654
1670
|
{
|
|
1655
1671
|
"path": "src/core/sql.ts",
|
|
1656
1672
|
"kind": "import-statement",
|
|
1657
1673
|
"original": "../core/sql"
|
|
1658
1674
|
},
|
|
1675
|
+
{
|
|
1676
|
+
"path": "src/core/applyGuard.ts",
|
|
1677
|
+
"kind": "import-statement",
|
|
1678
|
+
"original": "../core/applyGuard"
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
"path": "src/core/dmlGuard.ts",
|
|
1682
|
+
"kind": "import-statement",
|
|
1683
|
+
"original": "../core/dmlGuard"
|
|
1684
|
+
},
|
|
1659
1685
|
{
|
|
1660
1686
|
"path": "src/core/klikeValidation.ts",
|
|
1661
1687
|
"kind": "import-statement",
|
|
@@ -1669,8 +1695,49 @@
|
|
|
1669
1695
|
],
|
|
1670
1696
|
"format": "esm"
|
|
1671
1697
|
},
|
|
1698
|
+
"src/engine-library/batch.ts": {
|
|
1699
|
+
"bytes": 3529,
|
|
1700
|
+
"imports": [
|
|
1701
|
+
{
|
|
1702
|
+
"path": "src/execute.ts",
|
|
1703
|
+
"kind": "import-statement",
|
|
1704
|
+
"original": "../execute"
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
"path": "src/engine-library/errors.ts",
|
|
1708
|
+
"kind": "import-statement",
|
|
1709
|
+
"original": "./errors"
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
"path": "src/engine-library/cursorScope.ts",
|
|
1713
|
+
"kind": "import-statement",
|
|
1714
|
+
"original": "./cursorScope"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"path": "src/engine-library/options.ts",
|
|
1718
|
+
"kind": "import-statement",
|
|
1719
|
+
"original": "./options"
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"path": "src/engine-library/readonlyClient.ts",
|
|
1723
|
+
"kind": "import-statement",
|
|
1724
|
+
"original": "./readonlyClient"
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
"path": "src/engine-library/resultMapping.ts",
|
|
1728
|
+
"kind": "import-statement",
|
|
1729
|
+
"original": "./resultMapping"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"path": "src/engine-library/statementGuard.ts",
|
|
1733
|
+
"kind": "import-statement",
|
|
1734
|
+
"original": "./statementGuard"
|
|
1735
|
+
}
|
|
1736
|
+
],
|
|
1737
|
+
"format": "esm"
|
|
1738
|
+
},
|
|
1672
1739
|
"src/engine-library/query.ts": {
|
|
1673
|
-
"bytes":
|
|
1740
|
+
"bytes": 2547,
|
|
1674
1741
|
"imports": [
|
|
1675
1742
|
{
|
|
1676
1743
|
"path": "src/execute.ts",
|
|
@@ -1697,6 +1764,11 @@
|
|
|
1697
1764
|
"kind": "import-statement",
|
|
1698
1765
|
"original": "./readonlyClient"
|
|
1699
1766
|
},
|
|
1767
|
+
{
|
|
1768
|
+
"path": "src/engine-library/resultMapping.ts",
|
|
1769
|
+
"kind": "import-statement",
|
|
1770
|
+
"original": "./resultMapping"
|
|
1771
|
+
},
|
|
1700
1772
|
{
|
|
1701
1773
|
"path": "src/engine-library/statementGuard.ts",
|
|
1702
1774
|
"kind": "import-statement",
|
|
@@ -1706,7 +1778,7 @@
|
|
|
1706
1778
|
"format": "esm"
|
|
1707
1779
|
},
|
|
1708
1780
|
"src/engine-library/index.ts": {
|
|
1709
|
-
"bytes":
|
|
1781
|
+
"bytes": 1160,
|
|
1710
1782
|
"imports": [
|
|
1711
1783
|
{
|
|
1712
1784
|
"path": "src/engine-library/errors.ts",
|
|
@@ -1718,6 +1790,11 @@
|
|
|
1718
1790
|
"kind": "import-statement",
|
|
1719
1791
|
"original": "./browserClient"
|
|
1720
1792
|
},
|
|
1793
|
+
{
|
|
1794
|
+
"path": "src/engine-library/batch.ts",
|
|
1795
|
+
"kind": "import-statement",
|
|
1796
|
+
"original": "./batch"
|
|
1797
|
+
},
|
|
1721
1798
|
{
|
|
1722
1799
|
"path": "src/engine-library/query.ts",
|
|
1723
1800
|
"kind": "import-statement",
|
|
@@ -1734,6 +1811,7 @@
|
|
|
1734
1811
|
"KsqlEngineError",
|
|
1735
1812
|
"createReadonlyKintoneClient",
|
|
1736
1813
|
"explainQuery",
|
|
1814
|
+
"runBatch",
|
|
1737
1815
|
"runQuery",
|
|
1738
1816
|
"version"
|
|
1739
1817
|
],
|
|
@@ -1755,7 +1833,7 @@
|
|
|
1755
1833
|
"bytesInOutput": 139
|
|
1756
1834
|
},
|
|
1757
1835
|
"src/core/grouping.ts": {
|
|
1758
|
-
"bytesInOutput":
|
|
1836
|
+
"bytesInOutput": 1284
|
|
1759
1837
|
},
|
|
1760
1838
|
"src/core/aggregateExpression.ts": {
|
|
1761
1839
|
"bytesInOutput": 2592
|
|
@@ -1767,7 +1845,7 @@
|
|
|
1767
1845
|
"bytesInOutput": 92192
|
|
1768
1846
|
},
|
|
1769
1847
|
"src/core/dmlGuard.ts": {
|
|
1770
|
-
"bytesInOutput":
|
|
1848
|
+
"bytesInOutput": 2857
|
|
1771
1849
|
},
|
|
1772
1850
|
"src/core/applyPatchScope.ts": {
|
|
1773
1851
|
"bytesInOutput": 12612
|
|
@@ -1782,7 +1860,7 @@
|
|
|
1782
1860
|
"bytesInOutput": 5075
|
|
1783
1861
|
},
|
|
1784
1862
|
"src/converter/selectToKintone.ts": {
|
|
1785
|
-
"bytesInOutput":
|
|
1863
|
+
"bytesInOutput": 9186
|
|
1786
1864
|
},
|
|
1787
1865
|
"src/core/cteInlining.ts": {
|
|
1788
1866
|
"bytesInOutput": 1224
|
|
@@ -1803,7 +1881,10 @@
|
|
|
1803
1881
|
"bytesInOutput": 559
|
|
1804
1882
|
},
|
|
1805
1883
|
"src/core/groupingValidation.ts": {
|
|
1806
|
-
"bytesInOutput":
|
|
1884
|
+
"bytesInOutput": 5175
|
|
1885
|
+
},
|
|
1886
|
+
"src/core/batch.ts": {
|
|
1887
|
+
"bytesInOutput": 5518
|
|
1807
1888
|
},
|
|
1808
1889
|
"src/core/fieldSemantics.ts": {
|
|
1809
1890
|
"bytesInOutput": 1368
|
|
@@ -1815,7 +1896,7 @@
|
|
|
1815
1896
|
"bytesInOutput": 11162
|
|
1816
1897
|
},
|
|
1817
1898
|
"src/engine/evalWhere.ts": {
|
|
1818
|
-
"bytesInOutput":
|
|
1899
|
+
"bytesInOutput": 5752
|
|
1819
1900
|
},
|
|
1820
1901
|
"src/core/dmlCustomCheck.ts": {
|
|
1821
1902
|
"bytesInOutput": 1250
|
|
@@ -1830,7 +1911,7 @@
|
|
|
1830
1911
|
"bytesInOutput": 9946
|
|
1831
1912
|
},
|
|
1832
1913
|
"src/converter/applyPatchToKintone.ts": {
|
|
1833
|
-
"bytesInOutput":
|
|
1914
|
+
"bytesInOutput": 4501
|
|
1834
1915
|
},
|
|
1835
1916
|
"src/core/numberPrecision.ts": {
|
|
1836
1917
|
"bytesInOutput": 870
|
|
@@ -1842,7 +1923,7 @@
|
|
|
1842
1923
|
"bytesInOutput": 2802
|
|
1843
1924
|
},
|
|
1844
1925
|
"src/core/existingRecordValidation.ts": {
|
|
1845
|
-
"bytesInOutput":
|
|
1926
|
+
"bytesInOutput": 3491
|
|
1846
1927
|
},
|
|
1847
1928
|
"src/core/postImageValidation.ts": {
|
|
1848
1929
|
"bytesInOutput": 2207
|
|
@@ -1868,11 +1949,14 @@
|
|
|
1868
1949
|
"src/core/applyUpsertExecutePrepared.ts": {
|
|
1869
1950
|
"bytesInOutput": 1487
|
|
1870
1951
|
},
|
|
1952
|
+
"src/core/batchVariables.ts": {
|
|
1953
|
+
"bytesInOutput": 667
|
|
1954
|
+
},
|
|
1871
1955
|
"src/core/outerJoinSearchAbortGuard.ts": {
|
|
1872
1956
|
"bytesInOutput": 366
|
|
1873
1957
|
},
|
|
1874
1958
|
"src/core/explainMetadata.ts": {
|
|
1875
|
-
"bytesInOutput":
|
|
1959
|
+
"bytesInOutput": 627
|
|
1876
1960
|
},
|
|
1877
1961
|
"src/core/optimization/sharedPlanner.ts": {
|
|
1878
1962
|
"bytesInOutput": 339
|
|
@@ -1908,7 +1992,7 @@
|
|
|
1908
1992
|
"bytesInOutput": 2656
|
|
1909
1993
|
},
|
|
1910
1994
|
"src/engine/process.ts": {
|
|
1911
|
-
"bytesInOutput":
|
|
1995
|
+
"bytesInOutput": 19954
|
|
1912
1996
|
},
|
|
1913
1997
|
"src/converter/subtableAdapter.ts": {
|
|
1914
1998
|
"bytesInOutput": 643
|
|
@@ -1968,10 +2052,10 @@
|
|
|
1968
2052
|
"bytesInOutput": 412
|
|
1969
2053
|
},
|
|
1970
2054
|
"src/execute.ts": {
|
|
1971
|
-
"bytesInOutput":
|
|
2055
|
+
"bytesInOutput": 176457
|
|
1972
2056
|
},
|
|
1973
2057
|
"src/engine-library/errors.ts": {
|
|
1974
|
-
"bytesInOutput":
|
|
2058
|
+
"bytesInOutput": 1306
|
|
1975
2059
|
},
|
|
1976
2060
|
"src/api/cursorLeaseManager.ts": {
|
|
1977
2061
|
"bytesInOutput": 1777
|
|
@@ -1998,22 +2082,31 @@
|
|
|
1998
2082
|
"bytesInOutput": 766
|
|
1999
2083
|
},
|
|
2000
2084
|
"src/engine-library/options.ts": {
|
|
2001
|
-
"bytesInOutput":
|
|
2085
|
+
"bytesInOutput": 2212
|
|
2086
|
+
},
|
|
2087
|
+
"src/engine-library/resultMapping.ts": {
|
|
2088
|
+
"bytesInOutput": 777
|
|
2002
2089
|
},
|
|
2003
2090
|
"src/core/sql.ts": {
|
|
2004
|
-
"bytesInOutput":
|
|
2091
|
+
"bytesInOutput": 186
|
|
2092
|
+
},
|
|
2093
|
+
"src/core/applyGuard.ts": {
|
|
2094
|
+
"bytesInOutput": 236
|
|
2005
2095
|
},
|
|
2006
2096
|
"src/engine-library/statementGuard.ts": {
|
|
2007
|
-
"bytesInOutput":
|
|
2097
|
+
"bytesInOutput": 1704
|
|
2098
|
+
},
|
|
2099
|
+
"src/engine-library/batch.ts": {
|
|
2100
|
+
"bytesInOutput": 896
|
|
2008
2101
|
},
|
|
2009
2102
|
"src/engine-library/query.ts": {
|
|
2010
|
-
"bytesInOutput":
|
|
2103
|
+
"bytesInOutput": 603
|
|
2011
2104
|
},
|
|
2012
2105
|
"src/engine-library/index.ts": {
|
|
2013
2106
|
"bytesInOutput": 16
|
|
2014
2107
|
}
|
|
2015
2108
|
},
|
|
2016
|
-
"bytes":
|
|
2109
|
+
"bytes": 527181
|
|
2017
2110
|
}
|
|
2018
2111
|
}
|
|
2019
2112
|
}
|