diff options
author | stephan <stephan@noemail.net> | 2025-02-03 16:26:30 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2025-02-03 16:26:30 +0000 |
commit | 40ce00b54613bce948251264c2dae694db881aa3 (patch) | |
tree | 25bb9aa83a6bedcd77a25e130631ccf475f1c6a2 /ext/wasm/tester1.c-pp.js | |
parent | d98689f4d39c4729ef95a93317eaa7892a6aaed6 (diff) | |
download | sqlite-40ce00b54613bce948251264c2dae694db881aa3.tar.gz sqlite-40ce00b54613bce948251264c2dae694db881aa3.zip |
Initial work on a fix for the SAHPool VFS's effectively-no-op digest calculation, as reported in [https://github.com/sqlite/sqlite-wasm/issues/97|ticket #97 of the downstream npm subproject]. This requires more testing alongside databases created before this version to ensure that it's backwards-compatible.
FossilOrigin-Name: 9234c33f92d92bfddc6211c9c587f1072e70837c0ffe1416ef7d84d59bacd364
Diffstat (limited to 'ext/wasm/tester1.c-pp.js')
-rw-r--r-- | ext/wasm/tester1.c-pp.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/tester1.c-pp.js b/ext/wasm/tester1.c-pp.js index 880edcec1..6d603752b 100644 --- a/ext/wasm/tester1.c-pp.js +++ b/ext/wasm/tester1.c-pp.js @@ -3492,7 +3492,7 @@ globalThis.sqlite3InitModule = sqlite3InitModule; }); db.exec([ "create table t(a);", - "insert into t(a) values(1),(2),(3);", + "insert into t(a) values(1),(2),(1);", "select auxtest(a,a), auxtest(a,a) from t order by a" ]); }finally{ |