96a32bb51c
FossilOrigin-Name: 0cb2fed525778d96237b5b0943047665e1f636d1
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
# 2014 Dec 20
|
|
#
|
|
# The author disclaims copyright to this source code. In place of
|
|
# a legal notice, here is a blessing:
|
|
#
|
|
# 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.
|
|
#
|
|
#***********************************************************************
|
|
#
|
|
#
|
|
|
|
source [file join [file dirname [info script]] fts5_common.tcl]
|
|
set testprefix fts5rebuild
|
|
|
|
do_execsql_test 1.1 {
|
|
CREATE VIRTUAL TABLE f1 USING fts5(a, b);
|
|
INSERT INTO f1(a, b) VALUES('one', 'o n e');
|
|
INSERT INTO f1(a, b) VALUES('two', 't w o');
|
|
INSERT INTO f1(a, b) VALUES('three', 't h r e e');
|
|
}
|
|
|
|
do_execsql_test 1.2 {
|
|
INSERT INTO f1(f1) VALUES('integrity-check');
|
|
} {}
|
|
|
|
do_execsql_test 1.3 {
|
|
INSERT INTO f1(f1) VALUES('rebuild');
|
|
} {}
|
|
|
|
do_execsql_test 1.4 {
|
|
INSERT INTO f1(f1) VALUES('integrity-check');
|
|
} {}
|
|
|
|
do_execsql_test 1.5 {
|
|
DELETE FROM f1_data;
|
|
} {}
|
|
|
|
do_catchsql_test 1.6 {
|
|
INSERT INTO f1(f1) VALUES('integrity-check');
|
|
} {1 {SQL logic error or missing database}}
|
|
|
|
do_execsql_test 1.7 {
|
|
INSERT INTO f1(f1) VALUES('rebuild');
|
|
INSERT INTO f1(f1) VALUES('integrity-check');
|
|
} {}
|
|
|
|
finish_test
|
|
|