mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-11-23 13:16:16 +00:00
9ed72eb5ae
This merges the version-3.45.1 tag from upstream SQLite git repository to libSQL with the following conflicts resolved: Conflicts: README.md ext/jni/src/org/sqlite/jni/capi/ConfigSqllogCallback.java libsql-sqlite3/configure libsql-sqlite3/doc/jsonb.md libsql-sqlite3/ext/fts5/test/fts5faultH.test libsql-sqlite3/ext/fts5/test/fts5origintext.test libsql-sqlite3/ext/fts5/test/fts5origintext2.test libsql-sqlite3/ext/fts5/test/fts5origintext3.test libsql-sqlite3/ext/fts5/test/fts5origintext4.test libsql-sqlite3/ext/fts5/test/fts5origintext5.test libsql-sqlite3/ext/fts5/test/fts5secure8.test libsql-sqlite3/ext/fts5/test/fts5tokenizer2.test libsql-sqlite3/ext/fts5/test/fts5trigram2.test libsql-sqlite3/ext/jni/src/org/sqlite/jni/annotation/Experimental.java libsql-sqlite3/ext/jni/src/org/sqlite/jni/capi/ConfigSqlLogCallback.java libsql-sqlite3/ext/jni/src/org/sqlite/jni/capi/ConfigSqllogCallback.java libsql-sqlite3/ext/jni/src/org/sqlite/jni/wrapper1/WindowFunction.java libsql-sqlite3/ext/wasm/GNUmakefile libsql-sqlite3/ext/wasm/batch-runner-sahpool.html libsql-sqlite3/ext/wasm/batch-runner-sahpool.js libsql-sqlite3/src/pager.c libsql-sqlite3/src/shell.c.in libsql-sqlite3/src/sqliteInt.h libsql-sqlite3/src/wal.c libsql-sqlite3/test/fts3integrity.test libsql-sqlite3/test/json/jsonb-q1.txt libsql-sqlite3/test/json106.test libsql-sqlite3/test/json107.test libsql-sqlite3/test/jsonb01.test libsql-sqlite3/test/mmapcorrupt.test libsql-sqlite3/test/releasetest_data.tcl libsql-sqlite3/test/shell9.test libsql-sqlite3/test/wapp.tcl libsql-sqlite3/test/wapptest.tcl
76 lines
1.8 KiB
Plaintext
76 lines
1.8 KiB
Plaintext
# 2023-10-23
|
|
#
|
|
# May you do good and not evil.
|
|
# May you find forgiveness for yourself and forgive others.
|
|
# May you share freely, never taking more than you give.
|
|
#
|
|
#***********************************************************************
|
|
#
|
|
# Test PRAGMA integrity_check against and FTS3/FTS4 table.
|
|
#
|
|
|
|
|
|
set testdir [file dirname $argv0]
|
|
source $testdir/tester.tcl
|
|
|
|
ifcapable !fts3 { finish_test ; return }
|
|
|
|
set ::testprefix fts4intck1
|
|
|
|
proc slang {in} {
|
|
return [string map {th d e eh} $in]
|
|
}
|
|
|
|
db function slang -deterministic -innocuous slang
|
|
do_execsql_test 1.0 {
|
|
CREATE TABLE t1(a INTEGER PRIMARY KEY, b TEXT, c TEXT AS (slang(b)));
|
|
INSERT INTO t1(b) VALUES('the quick fox jumps over the lazy brown dog');
|
|
SELECT c FROM t1;
|
|
} {{deh quick fox jumps ovehr deh lazy brown dog}}
|
|
|
|
do_execsql_test 1.1 {
|
|
CREATE VIRTUAL TABLE t2 USING fts4(content="t1", c);
|
|
INSERT INTO t2(t2) VALUES('rebuild');
|
|
SELECT docid FROM t2 WHERE t2 MATCH 'deh';
|
|
} {1}
|
|
|
|
do_execsql_test 1.2 {
|
|
PRAGMA integrity_check(t2);
|
|
} {ok}
|
|
|
|
db close
|
|
sqlite3 db test.db
|
|
do_execsql_test 2.1 {
|
|
PRAGMA integrity_check(t2);
|
|
} {{unable to validate the inverted index for FTS4 table main.t2: SQL logic error}}
|
|
|
|
db function slang -deterministic -innocuous slang
|
|
do_execsql_test 2.2 {
|
|
PRAGMA integrity_check(t2);
|
|
} {ok}
|
|
|
|
proc slang {in} {return $in}
|
|
do_execsql_test 2.3 {
|
|
PRAGMA integrity_check(t2);
|
|
} {{malformed inverted index for FTS4 table main.t2}}
|
|
|
|
#-------------------------------------------------------------------------
|
|
# Test that integrity-check works on a read-only database.
|
|
#
|
|
reset_db
|
|
do_execsql_test 3.0 {
|
|
CREATE VIRTUAL TABLE x1 USING fts4(a, b);
|
|
INSERT INTO x1 VALUES('one', 'two');
|
|
INSERT INTO x1 VALUES('three', 'four');
|
|
}
|
|
db close
|
|
sqlite3 db test.db -readonly 1
|
|
|
|
do_execsql_test 3.1 {
|
|
PRAGMA integrity_check;
|
|
} {ok}
|
|
|
|
|
|
|
|
finish_test
|