@minnowdb/core 0.6.9 → 0.7.1

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.
Files changed (103) hide show
  1. package/dist/block-format/block.js +254 -325
  2. package/dist/block-format/checksum.js +30 -52
  3. package/dist/block-format/codecs.js +112 -125
  4. package/dist/block-format/column.js +187 -205
  5. package/dist/block-format/index.js +5 -1
  6. package/dist/block-format/physical.js +371 -387
  7. package/dist/block-format/types.js +4 -1
  8. package/dist/block-format/unicode.js +30 -39
  9. package/dist/date-value.d.ts +5 -0
  10. package/dist/date-value.js +71 -41
  11. package/dist/engine/artifact-cache.js +106 -116
  12. package/dist/engine/batch.js +36 -44
  13. package/dist/engine/buffered-writer.js +156 -158
  14. package/dist/engine/byte-estimates.js +20 -22
  15. package/dist/engine/cache-limits.js +24 -25
  16. package/dist/engine/cancellation.js +5 -3
  17. package/dist/engine/catalog.js +64 -73
  18. package/dist/engine/client.js +715 -780
  19. package/dist/engine/database.js +15952 -18465
  20. package/dist/engine/defaults.js +104 -111
  21. package/dist/engine/errors.js +113 -128
  22. package/dist/engine/fts.js +233 -280
  23. package/dist/engine/group-index.js +287 -321
  24. package/dist/engine/index.js +23 -12
  25. package/dist/engine/join-index.js +177 -186
  26. package/dist/engine/keyed-live.js +168 -173
  27. package/dist/engine/live-api.js +0 -1
  28. package/dist/engine/live-equal.js +32 -37
  29. package/dist/engine/live.js +603 -647
  30. package/dist/engine/memory.js +109 -111
  31. package/dist/engine/optimizer.d.ts +19 -1
  32. package/dist/engine/optimizer.js +2642 -2515
  33. package/dist/engine/point-read.d.ts +4 -2
  34. package/dist/engine/point-read.js +121 -171
  35. package/dist/engine/query-api.js +12 -3
  36. package/dist/engine/query-cache.js +61 -69
  37. package/dist/engine/query.d.ts +45 -0
  38. package/dist/engine/query.js +8506 -9375
  39. package/dist/engine/result-wire.js +221 -252
  40. package/dist/engine/schema-wire.js +97 -112
  41. package/dist/engine/schema.js +1099 -1254
  42. package/dist/engine/sort-keys.js +315 -389
  43. package/dist/engine/sql-domains.d.ts +7 -1
  44. package/dist/engine/sql-domains.js +648 -734
  45. package/dist/engine/sql-driver.js +0 -1
  46. package/dist/engine/sql-functions.d.ts +11 -0
  47. package/dist/engine/sql-functions.js +1092 -0
  48. package/dist/engine/sql-json.js +199 -218
  49. package/dist/engine/sql-semantics.d.ts +25 -4
  50. package/dist/engine/sql-semantics.js +579 -513
  51. package/dist/engine/typed-live.js +271 -293
  52. package/dist/engine/vector.d.ts +7 -1
  53. package/dist/engine/vector.js +4513 -4580
  54. package/dist/engine/worker-host.d.ts +8 -63
  55. package/dist/engine/worker-host.js +28 -1130
  56. package/dist/engine/worker-indexeddb.d.ts +1 -0
  57. package/dist/engine/worker-indexeddb.js +3 -0
  58. package/dist/engine/worker-memory.d.ts +1 -0
  59. package/dist/engine/worker-memory.js +3 -0
  60. package/dist/engine/worker-opfs.d.ts +1 -0
  61. package/dist/engine/worker-opfs.js +3 -0
  62. package/dist/engine/worker-server.d.ts +93 -0
  63. package/dist/engine/worker-server.js +999 -0
  64. package/dist/engine/worker-store-indexeddb.d.ts +2 -0
  65. package/dist/engine/worker-store-indexeddb.js +11 -0
  66. package/dist/engine/worker-store-memory.d.ts +2 -0
  67. package/dist/engine/worker-store-memory.js +6 -0
  68. package/dist/engine/worker-store-opfs.d.ts +2 -0
  69. package/dist/engine/worker-store-opfs.js +9 -0
  70. package/dist/engine/worker.js +0 -12
  71. package/dist/engine/write-block-planner.js +93 -100
  72. package/dist/plan/index.js +15 -16
  73. package/dist/plan/model.d.ts +9 -1
  74. package/dist/plan/model.js +20 -27
  75. package/dist/storage/index.js +0 -12
  76. package/dist/storage/indexeddb.js +11776 -13171
  77. package/dist/storage/memory.js +1198 -1241
  78. package/dist/storage/opfs/files.js +238 -295
  79. package/dist/storage/opfs/index.js +9 -3
  80. package/dist/storage/opfs/leader.js +4386 -4856
  81. package/dist/storage/opfs/rpc.js +223 -259
  82. package/dist/storage/opfs/snapshot-ledger.js +219 -260
  83. package/dist/storage/opfs/store.js +884 -1003
  84. package/dist/storage/persistence.js +59 -74
  85. package/dist/storage/snapshot-stream.js +788 -826
  86. package/dist/storage/snapshot.js +36 -37
  87. package/dist/storage/toolkit/extents.js +444 -520
  88. package/dist/storage/toolkit/index.js +28 -29
  89. package/dist/storage/toolkit/record-core.js +5792 -6377
  90. package/dist/storage/toolkit/sync-file.js +34 -42
  91. package/dist/storage/toolkit/wal.js +92 -127
  92. package/dist/storage/toolkit/wire.js +232 -256
  93. package/dist/storage/types.js +2952 -3228
  94. package/dist/testing/block-store-conformance.js +1556 -1629
  95. package/dist/testing/index.js +310 -291
  96. package/dist/testing/opfs-shim.js +280 -312
  97. package/dist/testing/simulator.js +496 -534
  98. package/dist/testing/sqllogictest.js +425 -365
  99. package/dist/transactions/index.js +1464 -1712
  100. package/dist/worker-protocol/index.js +70 -69
  101. package/package.json +20 -2
  102. package/postgres-feature-profile.json +15 -5
  103. package/sql-feature-matrix.json +252 -2
@@ -1,44 +1,43 @@
1
- /** Public snapshot API over the bounded framed v1 container. */
2
1
  export * from "./snapshot-stream.js";
3
2
  import { SNAPSHOT_FRAME_KINDS } from "./types.js";
4
3
  import { decodeSnapshotFrameStream } from "./snapshot-stream.js";
5
- export const SNAPSHOT_FORMAT_VERSION = 1;
6
- /** Export and worker-transport chunk ceiling; direct imports accept any non-empty source chunk. */
7
- export const MAX_SNAPSHOT_STREAM_CHUNK_BYTES = 1024 * 1024;
8
- /**
9
- * Reads and validates the canonical header from a materialized snapshot. The decoder closes its
10
- * source immediately after the header; body checks run during import, where frames are consumed.
11
- */
12
- export async function readSnapshotSummary(bytes) {
13
- if (!(bytes instanceof Uint8Array) || bytes.byteLength === 0) {
14
- throw new TypeError("Snapshot bytes must be a non-empty Uint8Array");
4
+ const SNAPSHOT_FORMAT_VERSION = 1;
5
+ const MAX_SNAPSHOT_STREAM_CHUNK_BYTES = 1024 * 1024;
6
+ async function readSnapshotSummary(bytes) {
7
+ if (!(bytes instanceof Uint8Array) || bytes.byteLength === 0) {
8
+ throw new TypeError("Snapshot bytes must be a non-empty Uint8Array");
9
+ }
10
+ const entries = decodeSnapshotFrameStream((async function* () {
11
+ for (let offset = 0; offset < bytes.byteLength; offset += MAX_SNAPSHOT_STREAM_CHUNK_BYTES) {
12
+ yield bytes.subarray(offset, offset + MAX_SNAPSHOT_STREAM_CHUNK_BYTES);
15
13
  }
16
- const entries = decodeSnapshotFrameStream((async function* () {
17
- for (let offset = 0; offset < bytes.byteLength; offset += MAX_SNAPSHOT_STREAM_CHUNK_BYTES) {
18
- yield bytes.subarray(offset, offset + MAX_SNAPSHOT_STREAM_CHUNK_BYTES);
19
- }
20
- })());
21
- const first = await entries.next();
22
- await entries.return(undefined);
23
- if (first.done || first.value.type !== "header")
24
- throw new Error("Snapshot header is missing");
25
- return summaryFromHeader(first.value.header, bytes.byteLength);
14
+ })());
15
+ const first = await entries.next();
16
+ await entries.return(void 0);
17
+ if (first.done || first.value.type !== "header")
18
+ throw new Error("Snapshot header is missing");
19
+ return summaryFromHeader(first.value.header, bytes.byteLength);
26
20
  }
27
21
  function summaryFromHeader(header, byteLength) {
28
- let payloadBytes = 0;
29
- for (const kind of SNAPSHOT_FRAME_KINDS) {
30
- const next = payloadBytes + header.kinds[kind].storedBytes;
31
- if (!Number.isSafeInteger(next))
32
- throw new RangeError("Snapshot payload is too large");
33
- payloadBytes = next;
34
- }
35
- return {
36
- formatVersion: header.formatVersion,
37
- version: header.databaseVersion,
38
- createdAt: header.createdAt,
39
- tableCount: header.kinds["catalog-page"].itemCount,
40
- blockCount: header.kinds.block.itemCount,
41
- payloadBytes,
42
- byteLength,
43
- };
22
+ let payloadBytes = 0;
23
+ for (const kind of SNAPSHOT_FRAME_KINDS) {
24
+ const next = payloadBytes + header.kinds[kind].storedBytes;
25
+ if (!Number.isSafeInteger(next))
26
+ throw new RangeError("Snapshot payload is too large");
27
+ payloadBytes = next;
28
+ }
29
+ return {
30
+ formatVersion: header.formatVersion,
31
+ version: header.databaseVersion,
32
+ createdAt: header.createdAt,
33
+ tableCount: header.kinds["catalog-page"].itemCount,
34
+ blockCount: header.kinds.block.itemCount,
35
+ payloadBytes,
36
+ byteLength
37
+ };
44
38
  }
39
+ export {
40
+ MAX_SNAPSHOT_STREAM_CHUNK_BYTES,
41
+ SNAPSHOT_FORMAT_VERSION,
42
+ readSnapshotSummary
43
+ };