@peerbit/indexer-sqlite3 1.0.5 → 1.0.6-88f45c3

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.
@@ -26,9 +26,9 @@
26
26
  /*
27
27
  ** This code was built from sqlite3 version...
28
28
  **
29
- ** SQLITE_VERSION "3.46.0"
30
- ** SQLITE_VERSION_NUMBER 3046000
31
- ** SQLITE_SOURCE_ID "2024-05-23 13:25:27 96c92aba00c8375bc32fafcdf12429c58bd8aabfcadab6683e35bbb9cdebf19e"
29
+ ** SQLITE_VERSION "3.46.1"
30
+ ** SQLITE_VERSION_NUMBER 3046001
31
+ ** SQLITE_SOURCE_ID "2024-08-13 09:16:08 c9c2ab54ba1f5f46360f1b4f35d849cd3f080e6fc2b6c60e91b16c63f69a1e33"
32
32
  **
33
33
  ** Using the Emscripten SDK version 3.1.30.
34
34
  */
@@ -10689,11 +10689,11 @@ var sqlite3InitModule = (() => {
10689
10689
 
10690
10690
  globalThis.sqlite3ApiBootstrap.initializers.push(function (sqlite3) {
10691
10691
  sqlite3.version = {
10692
- libVersion: '3.46.0',
10693
- libVersionNumber: 3046000,
10692
+ libVersion: '3.46.1',
10693
+ libVersionNumber: 3046001,
10694
10694
  sourceId:
10695
- '2024-05-23 13:25:27 96c92aba00c8375bc32fafcdf12429c58bd8aabfcadab6683e35bbb9cdebf19e',
10696
- downloadVersion: 3460000,
10695
+ '2024-08-13 09:16:08 c9c2ab54ba1f5f46360f1b4f35d849cd3f080e6fc2b6c60e91b16c63f69a1e33',
10696
+ downloadVersion: 3460100,
10697
10697
  };
10698
10698
  });
10699
10699
 
@@ -12644,6 +12644,7 @@ var sqlite3InitModule = (() => {
12644
12644
  'SQLITE_ACCESS_EXISTS',
12645
12645
  'SQLITE_ACCESS_READWRITE',
12646
12646
  'SQLITE_BUSY',
12647
+ 'SQLITE_CANTOPEN',
12647
12648
  'SQLITE_ERROR',
12648
12649
  'SQLITE_IOERR',
12649
12650
  'SQLITE_IOERR_ACCESS',
@@ -12688,7 +12689,11 @@ var sqlite3InitModule = (() => {
12688
12689
  Atomics.store(state.sabOPView, state.opIds.whichOp, opNdx);
12689
12690
  Atomics.notify(state.sabOPView, state.opIds.whichOp);
12690
12691
  const t = performance.now();
12691
- Atomics.wait(state.sabOPView, state.opIds.rc, -1);
12692
+ while (
12693
+ 'not-equal' !==
12694
+ Atomics.wait(state.sabOPView, state.opIds.rc, -1)
12695
+ ) {}
12696
+
12692
12697
  const rc = Atomics.load(state.sabOPView, state.opIds.rc);
12693
12698
  metrics[op].wait += performance.now() - t;
12694
12699
  if (rc && state.asyncS11nExceptions) {
@@ -12870,8 +12875,12 @@ var sqlite3InitModule = (() => {
12870
12875
 
12871
12876
  const ioSyncWrappers = {
12872
12877
  xCheckReservedLock: function (pFile, pOut) {
12873
- const f = __openFiles[pFile];
12874
- wasm.poke(pOut, f.lockType ? 1 : 0, 'i32');
12878
+ if (1) {
12879
+ wasm.poke(pOut, 0, 'i32');
12880
+ } else {
12881
+ const f = __openFiles[pFile];
12882
+ wasm.poke(pOut, f.lockType ? 1 : 0, 'i32');
12883
+ }
12875
12884
  return 0;
12876
12885
  },
12877
12886
  xClose: function (pFile) {
Binary file