3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
12 # Test RBU with virtual tables. And tables with no PRIMARY KEY declarations.
15 source [file join [file dirname [info script]] rbu_common.tcl]
16 if_no_rbu_support { finish_test ; return }
25 CREATE VIRTUAL TABLE f1 USING fts4(a, b, c);
26 INSERT INTO f1(rowid, a, b, c) VALUES(11, 'a', 'b', 'c');
27 INSERT INTO f1(rowid, a, b, c) VALUES(12, 'd', 'e', 'f');
28 INSERT INTO f1(rowid, a, b, c) VALUES(13, 'g', 'h', 'i');
35 CREATE TABLE data_f1(rbu_rowid, a, b, c, rbu_control);
36 INSERT INTO data_f1 VALUES(14, 'x', 'y', 'z', 0); -- INSERT
37 INSERT INTO data_f1 VALUES(11, NULL, NULL, NULL, 1); -- DELETE
38 INSERT INTO data_f1 VALUES(13, NULL, NULL, 'X', '..x'); -- UPDATE
45 sqlite3rbu rbu test.db rbu.db
47 if {$rc != "SQLITE_OK"} break
53 do_execsql_test 1.2.2 { SELECT rowid, * FROM f1 } {
58 do_execsql_test 1.2.3 { INSERT INTO f1(f1) VALUES('integrity-check') }
61 #-------------------------------------------------------------------------
62 # Tables with no PK declaration.
65 # Run the RBU in file $rbu on target database $target until completion.
67 proc run_rbu {target rbu} {
68 sqlite3rbu rbu $target $rbu
69 while { [rbu step]=="SQLITE_OK" } {}
76 CREATE INDEX i1 ON t1(a);
79 CREATE INDEX i1 ON t1(b, c);
80 CREATE INDEX i2 ON t1(c, b);
81 CREATE INDEX i3 ON t1(a, a, a, b, b, b, c, c, c);
86 do_execsql_test 2.$tn.1 {
87 CREATE TABLE t1(a, b, c);
88 INSERT INTO t1 VALUES(1, 2, 3);
89 INSERT INTO t1 VALUES(4, 5, 6);
90 INSERT INTO t1(rowid, a, b, c) VALUES(-1, 'a', 'b', 'c');
91 INSERT INTO t1(rowid, a, b, c) VALUES(-2, 'd', 'e', 'f');
100 CREATE TABLE data_t1(rbu_rowid, a, b, c, rbu_control);
101 INSERT INTO data_t1 VALUES(3, 'x', 'y', 'z', 0);
102 INSERT INTO data_t1 VALUES(NULL, 'X', 'Y', 'Z', 0);
103 INSERT INTO data_t1 VALUES('1', NULL, NULL, NULL, 1);
104 INSERT INTO data_t1 VALUES(-2, NULL, NULL, 'fff', '..x');
109 run_rbu test.db rbu.db
111 do_execsql_test 2.$tn.3 {
112 SELECT rowid, a, b, c FROM t1 ORDER BY rowid;
121 integrity_check 2.$tn.4