@peerbit/indexer-sqlite3 3.0.0-c89b0fa → 3.0.0-dac5207
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.min.js +3 -3
- package/dist/index.min.js.map +2 -2
- package/dist/src/engine.d.ts +1 -1
- package/dist/src/engine.d.ts.map +1 -1
- package/dist/src/engine.js +2 -2
- package/dist/src/engine.js.map +1 -1
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +2 -2
- package/dist/src/index.js.map +1 -1
- package/package.json +8 -7
- package/src/engine.ts +2 -2
- package/src/index.ts +2 -2
package/dist/index.min.js
CHANGED
|
@@ -21940,7 +21940,7 @@ async function getIgnoreFK(stmt, values) {
|
|
|
21940
21940
|
throw e;
|
|
21941
21941
|
}
|
|
21942
21942
|
}
|
|
21943
|
-
var
|
|
21943
|
+
var SQLiteIndex = class {
|
|
21944
21944
|
properties;
|
|
21945
21945
|
// SQLite writes are inherently serialized per connection.
|
|
21946
21946
|
// We still need an explicit async barrier because our API is async and
|
|
@@ -22389,7 +22389,7 @@ var SQLiteIndices = class _SQLiteIndices {
|
|
|
22389
22389
|
if (existing) {
|
|
22390
22390
|
return existing.index;
|
|
22391
22391
|
}
|
|
22392
|
-
const index = new
|
|
22392
|
+
const index = new SQLiteIndex({
|
|
22393
22393
|
db: this.properties.db,
|
|
22394
22394
|
schema: properties.schema,
|
|
22395
22395
|
scope: this._scope
|
|
@@ -22918,7 +22918,7 @@ var create3 = async (directory) => {
|
|
|
22918
22918
|
return new SQLiteIndices({ db, directory });
|
|
22919
22919
|
};
|
|
22920
22920
|
export {
|
|
22921
|
-
|
|
22921
|
+
SQLiteIndex,
|
|
22922
22922
|
SQLiteIndices,
|
|
22923
22923
|
create3 as create,
|
|
22924
22924
|
encodeName
|