1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

wasmfs: use unix-none VFS by default to avoid locking errors in non-OPFS mode.

FossilOrigin-Name: 75561dea1a1afe9cb0a7d58dd82fa519e51cf42e330922cfd8e9ccdf6db4dc0f
This commit is contained in:
stephan
2022-08-13 16:36:06 +00:00
parent 1025227272
commit a7234901b2
4 changed files with 11 additions and 10 deletions

View File

@ -24,7 +24,7 @@
const stderr = error;
const test1 = function(db){
db.execMulti("create table if not exists t(a);")
db.exec("create table if not exists t(a);")
.callInTransaction(function(db){
db.prepare("insert into t(a) values(?)")
.bind(new Date().getTime())