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 #***********************************************************************
11 # This file implements regression tests for SQLite library.
13 # This file implements tests for the conflict resolution extension
14 # in WITHOUT ROWID tables
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
25 # Create tables for the first group of tests.
27 do_test conflict2-1.0 {
29 CREATE TABLE t1(a, b, c, PRIMARY KEY(a,b)) WITHOUT rowid;
31 SELECT c FROM t1 ORDER BY c;
35 # Six columns of configuration data as follows:
37 # i The reference number of the test
38 # cmd An INSERT or REPLACE command to execute against table t1
39 # t0 True if there is an error from $cmd
40 # t1 Content of "c" column of t1 assuming no error in $cmd
41 # t2 Content of "x" column of t2
42 # t3 Number of temporary files created by this test
44 foreach {i cmd t0 t1 t2 t3} {
46 2 {INSERT OR IGNORE} 0 3 1 0
47 3 {INSERT OR REPLACE} 0 4 1 0
49 5 {INSERT OR FAIL} 1 {} 1 0
50 6 {INSERT OR ABORT} 1 {} 1 0
51 7 {INSERT OR ROLLBACK} 1 {} {} 0
53 do_test conflict2-1.$i {
54 set ::sqlite_opentemp_count 0
55 set r0 [catch {execsql [subst {
58 INSERT INTO t1 VALUES(1,2,3);
60 INSERT INTO t2 VALUES(1);
61 $cmd INTO t1 VALUES(1,2,4);
63 catch {execsql {COMMIT}}
64 if {$r0} {set r1 {}} {set r1 [execsql {SELECT c FROM t1}]}
65 set r2 [execsql {SELECT x FROM t2}]
66 set r3 $::sqlite_opentemp_count
68 } [list $t0 $t1 $t2 $t3]
71 # Create tables for the first group of tests.
73 do_test conflict2-2.0 {
77 CREATE TABLE t1(a INTEGER PRIMARY KEY, b, c, UNIQUE(a,b)) WITHOUT rowid;
79 SELECT c FROM t1 ORDER BY c;
83 # Six columns of configuration data as follows:
85 # i The reference number of the test
86 # cmd An INSERT or REPLACE command to execute against table t1
87 # t0 True if there is an error from $cmd
88 # t1 Content of "c" column of t1 assuming no error in $cmd
89 # t2 Content of "x" column of t2
91 foreach {i cmd t0 t1 t2} {
93 2 {INSERT OR IGNORE} 0 3 1
94 3 {INSERT OR REPLACE} 0 4 1
96 5 {INSERT OR FAIL} 1 {} 1
97 6 {INSERT OR ABORT} 1 {} 1
98 7 {INSERT OR ROLLBACK} 1 {} {}
100 do_test conflict2-2.$i {
101 set r0 [catch {execsql [subst {
104 INSERT INTO t1 VALUES(1,2,3);
106 INSERT INTO t2 VALUES(1);
107 $cmd INTO t1 VALUES(1,2,4);
109 catch {execsql {COMMIT}}
110 if {$r0} {set r1 {}} {set r1 [execsql {SELECT c FROM t1}]}
111 set r2 [execsql {SELECT x FROM t2}]
116 # Create tables for the first group of tests.
118 do_test conflict2-3.0 {
122 CREATE TABLE t1(a, b, c INTEGER, PRIMARY KEY(c), UNIQUE(a,b)) WITHOUT rowid;
124 SELECT c FROM t1 ORDER BY c;
128 # Six columns of configuration data as follows:
130 # i The reference number of the test
131 # cmd An INSERT or REPLACE command to execute against table t1
132 # t0 True if there is an error from $cmd
133 # t1 Content of "c" column of t1 assuming no error in $cmd
134 # t2 Content of "x" column of t2
136 foreach {i cmd t0 t1 t2} {
138 2 {INSERT OR IGNORE} 0 3 1
139 3 {INSERT OR REPLACE} 0 4 1
141 5 {INSERT OR FAIL} 1 {} 1
142 6 {INSERT OR ABORT} 1 {} 1
143 7 {INSERT OR ROLLBACK} 1 {} {}
145 do_test conflict2-3.$i {
146 set r0 [catch {execsql [subst {
149 INSERT INTO t1 VALUES(1,2,3);
151 INSERT INTO t2 VALUES(1);
152 $cmd INTO t1 VALUES(1,2,4);
154 catch {execsql {COMMIT}}
155 if {$r0} {set r1 {}} {set r1 [execsql {SELECT c FROM t1}]}
156 set r2 [execsql {SELECT x FROM t2}]
161 do_test conflict2-4.0 {
169 # Six columns of configuration data as follows:
171 # i The reference number of the test
172 # conf1 The conflict resolution algorithm on the UNIQUE constraint
173 # cmd An INSERT or REPLACE command to execute against table t1
174 # t0 True if there is an error from $cmd
175 # t1 Content of "c" column of t1 assuming no error in $cmd
176 # t2 Content of "x" column of t2
178 foreach {i conf1 cmd t0 t1 t2} {
180 2 REPLACE INSERT 0 4 1
181 3 IGNORE INSERT 0 3 1
183 5 ABORT INSERT 1 {} 1
184 6 ROLLBACK INSERT 1 {} {}
185 7 REPLACE {INSERT OR IGNORE} 0 3 1
186 8 IGNORE {INSERT OR REPLACE} 0 4 1
187 9 FAIL {INSERT OR IGNORE} 0 3 1
188 10 ABORT {INSERT OR REPLACE} 0 4 1
189 11 ROLLBACK {INSERT OR IGNORE } 0 3 1
191 do_test conflict2-4.$i {
192 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"}
193 set r0 [catch {execsql [subst {
195 CREATE TABLE t1(a,b,c,PRIMARY KEY(a,b) $conf1) WITHOUT rowid;
197 INSERT INTO t1 VALUES(1,2,3);
199 INSERT INTO t2 VALUES(1);
200 $cmd INTO t1 VALUES(1,2,4);
202 catch {execsql {COMMIT}}
203 if {$r0} {set r1 {}} {set r1 [execsql {SELECT c FROM t1}]}
204 set r2 [execsql {SELECT x FROM t2}]
209 do_test conflict2-5.0 {
217 # Six columns of configuration data as follows:
219 # i The reference number of the test
220 # conf1 The conflict resolution algorithm on the NOT NULL constraint
221 # cmd An INSERT or REPLACE command to execute against table t1
222 # t0 True if there is an error from $cmd
223 # t1 Content of "c" column of t1 assuming no error in $cmd
224 # t2 Content of "x" column of t2
226 foreach {i conf1 cmd t0 t1 t2} {
228 2 REPLACE INSERT 0 5 1
229 3 IGNORE INSERT 0 {} 1
231 5 ABORT INSERT 1 {} 1
232 6 ROLLBACK INSERT 1 {} {}
233 7 REPLACE {INSERT OR IGNORE} 0 {} 1
234 8 IGNORE {INSERT OR REPLACE} 0 5 1
235 9 FAIL {INSERT OR IGNORE} 0 {} 1
236 10 ABORT {INSERT OR REPLACE} 0 5 1
237 11 ROLLBACK {INSERT OR IGNORE} 0 {} 1
238 12 {} {INSERT OR IGNORE} 0 {} 1
239 13 {} {INSERT OR REPLACE} 0 5 1
240 14 {} {INSERT OR FAIL} 1 {} 1
241 15 {} {INSERT OR ABORT} 1 {} 1
242 16 {} {INSERT OR ROLLBACK} 1 {} {}
244 if {$t0} {set t1 {NOT NULL constraint failed: t1.c}}
245 do_test conflict2-5.$i {
246 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"}
247 set r0 [catch {execsql [subst {
249 CREATE TABLE t1(a,b,c NOT NULL $conf1 DEFAULT 5);
252 INSERT INTO t2 VALUES(1);
253 $cmd INTO t1 VALUES(1,2,NULL);
255 catch {execsql {COMMIT}}
256 if {!$r0} {set r1 [execsql {SELECT c FROM t1}]}
257 set r2 [execsql {SELECT x FROM t2}]
262 do_test conflict2-6.0 {
265 CREATE TABLE t2(a,b,c);
266 INSERT INTO t2 VALUES(1,2,1);
267 INSERT INTO t2 VALUES(2,3,2);
268 INSERT INTO t2 VALUES(3,4,1);
269 INSERT INTO t2 VALUES(4,5,4);
270 SELECT c FROM t2 ORDER BY b;
272 INSERT INTO t3 VALUES(1);
276 # Six columns of configuration data as follows:
278 # i The reference number of the test
279 # conf1 The conflict resolution algorithm on the UNIQUE constraint
280 # cmd An UPDATE command to execute against table t1
281 # t0 True if there is an error from $cmd
282 # t1 Content of "b" column of t1 assuming no error in $cmd
283 # t2 Content of "x" column of t3
284 # t3 Number of temporary files for tables
285 # t4 Number of temporary files for statement journals
287 # Update: Since temporary table files are now opened lazily, and none
288 # of the following tests use large quantities of data, t3 is always 0.
290 # Update (2016-03-04): Subjournals now only open when their size
293 foreach {i conf1 cmd t0 t1 t2 t3 t4} {
294 1 {} UPDATE 1 {6 7 8 9} 1 0 0
295 2 REPLACE UPDATE 0 {7 6 9} 1 0 0
296 3 IGNORE UPDATE 0 {6 7 3 9} 1 0 0
297 4 FAIL UPDATE 1 {6 7 3 4} 1 0 0
298 5 ABORT UPDATE 1 {1 2 3 4} 1 0 0
299 6 ROLLBACK UPDATE 1 {1 2 3 4} 0 0 0
300 7 REPLACE {UPDATE OR IGNORE} 0 {6 7 3 9} 1 0 0
301 8 IGNORE {UPDATE OR REPLACE} 0 {7 6 9} 1 0 0
302 9 FAIL {UPDATE OR IGNORE} 0 {6 7 3 9} 1 0 0
303 10 ABORT {UPDATE OR REPLACE} 0 {7 6 9} 1 0 0
304 11 ROLLBACK {UPDATE OR IGNORE} 0 {6 7 3 9} 1 0 0
305 12 {} {UPDATE OR IGNORE} 0 {6 7 3 9} 1 0 0
306 13 {} {UPDATE OR REPLACE} 0 {7 6 9} 1 0 0
307 14 {} {UPDATE OR FAIL} 1 {6 7 3 4} 1 0 0
308 15 {} {UPDATE OR ABORT} 1 {1 2 3 4} 1 0 0
309 16 {} {UPDATE OR ROLLBACK} 1 {1 2 3 4} 0 0 0
312 # When using in-memory journals, no temporary files are required for
313 # statement journals.
314 if {[permutation] == "inmemory_journal"} { set t4 0 }
316 if {$t0} {set t1 {UNIQUE constraint failed: t1.a}}
317 if {[info exists TEMP_STORE] && $TEMP_STORE==3} {
320 set t3 [expr {$t3+$t4}]
322 do_test conflict2-6.$i {
325 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"}
326 execsql {pragma temp_store=file}
327 set ::sqlite_opentemp_count 0
328 set r0 [catch {execsql [subst {
330 CREATE TABLE t1(a,b,c, PRIMARY KEY(a) $conf1) WITHOUT rowid;
331 INSERT INTO t1 SELECT * FROM t2;
338 catch {execsql {COMMIT}}
339 if {!$r0} {set r1 [execsql {SELECT a FROM t1 ORDER BY b}]}
340 set r2 [execsql {SELECT x FROM t3}]
341 list $r0 $r1 $r2 $::sqlite_opentemp_count
342 } [list $t0 $t1 $t2 $t3]
345 # Test to make sure a lot of IGNOREs don't cause a stack overflow
347 do_test conflict2-7.1 {
352 CREATE TABLE t1(a PRIMARY KEY, b) without rowid;
354 for {set i 1} {$i<=50} {incr i} {
355 execsql "INSERT into t1 values($i,[expr {$i+1}]);"
358 SELECT count(*), min(a), max(b) FROM t1;
361 do_test conflict2-7.2 {
363 PRAGMA count_changes=on;
364 UPDATE OR IGNORE t1 SET a=1000;
367 do_test conflict2-7.2.1 {
370 do_test conflict2-7.3 {
372 SELECT b FROM t1 WHERE a=1000;
375 do_test conflict2-7.4 {
377 SELECT count(*) FROM t1;
380 do_test conflict2-7.5 {
382 PRAGMA count_changes=on;
383 UPDATE OR REPLACE t1 SET a=1001;
386 do_test conflict2-7.5.1 {
389 do_test conflict2-7.7 {
391 SELECT count(*) FROM t1;
395 # Update for version 3: A SELECT statement no longer resets the change
396 # counter (Test result changes from 0 to 50).
397 do_test conflict2-7.7.1 {
401 # Make sure the row count is right for rows that are ignored on
404 do_test conflict2-8.1 {
407 INSERT INTO t1 VALUES(1,2);
410 INSERT OR IGNORE INTO t1 VALUES(2,3);
413 do_test conflict2-8.1.1 {
416 do_test conflict2-8.2 {
418 INSERT OR IGNORE INTO t1 VALUES(2,4);
421 do_test conflict2-8.2.1 {
424 do_test conflict2-8.3 {
426 INSERT OR REPLACE INTO t1 VALUES(2,4);
429 do_test conflict2-8.3.1 {
432 do_test conflict2-8.4 {
434 INSERT OR IGNORE INTO t1 SELECT * FROM t1;
437 do_test conflict2-8.4.1 {
440 do_test conflict2-8.5 {
442 INSERT OR IGNORE INTO t1 SELECT a+2,b+2 FROM t1;
445 do_test conflict2-8.5.1 {
448 do_test conflict2-8.6 {
450 INSERT OR IGNORE INTO t1 SELECT a+3,b+3 FROM t1;
453 do_test conflict2-8.6.1 {
457 integrity_check conflict2-8.99
459 do_test conflict2-9.1 {
461 PRAGMA count_changes=0;
463 a INTEGER PRIMARY KEY ON CONFLICT IGNORE,
464 b INTEGER UNIQUE ON CONFLICT FAIL,
465 c INTEGER UNIQUE ON CONFLICT REPLACE,
466 d INTEGER UNIQUE ON CONFLICT ABORT,
467 e INTEGER UNIQUE ON CONFLICT ROLLBACK
470 INSERT INTO t3 VALUES(1);
474 do_test conflict2-9.2 {
476 INSERT INTO t2 VALUES(1,1,1,1,1);
477 INSERT INTO t2 VALUES(2,2,2,2,2);
480 } {0 {1 1 1 1 1 2 2 2 2 2}}
481 do_test conflict2-9.3 {
483 INSERT INTO t2 VALUES(1,3,3,3,3);
486 } {0 {1 1 1 1 1 2 2 2 2 2}}
487 do_test conflict2-9.4 {
489 UPDATE t2 SET a=a+1 WHERE a=1;
492 } {0 {1 1 1 1 1 2 2 2 2 2}}
493 do_test conflict2-9.5 {
495 INSERT INTO t2 VALUES(3,1,3,3,3);
497 } {1 {UNIQUE constraint failed: t2.b}}
498 do_test conflict2-9.5b {
499 db eval {SELECT * FROM t2;}
500 } {1 1 1 1 1 2 2 2 2 2}
501 do_test conflict2-9.6 {
503 UPDATE t2 SET b=b+1 WHERE b=1;
506 } {1 {UNIQUE constraint failed: t2.b}}
507 do_test conflict2-9.6b {
508 db eval {SELECT * FROM t2;}
509 } {1 1 1 1 1 2 2 2 2 2}
510 do_test conflict2-9.7 {
514 INSERT INTO t2 VALUES(3,1,3,3,3);
517 } {1 {UNIQUE constraint failed: t2.b}}
518 do_test conflict2-9.8 {
520 execsql {SELECT * FROM t3}
522 do_test conflict2-9.9 {
526 UPDATE t2 SET b=b+1 WHERE b=1;
529 } {1 {UNIQUE constraint failed: t2.b}}
530 do_test conflict2-9.10 {
532 execsql {SELECT * FROM t3}
534 do_test conflict2-9.11 {
536 INSERT INTO t2 VALUES(3,3,3,1,3);
539 } {1 {UNIQUE constraint failed: t2.d}}
540 do_test conflict2-9.12 {
542 UPDATE t2 SET d=d+1 WHERE d=1;
545 } {1 {UNIQUE constraint failed: t2.d}}
546 do_test conflict2-9.13 {
550 INSERT INTO t2 VALUES(3,3,3,1,3);
553 } {1 {UNIQUE constraint failed: t2.d}}
554 do_test conflict2-9.14 {
556 execsql {SELECT * FROM t3}
558 do_test conflict2-9.15 {
562 UPDATE t2 SET d=d+1 WHERE d=1;
565 } {1 {UNIQUE constraint failed: t2.d}}
566 do_test conflict2-9.16 {
568 execsql {SELECT * FROM t3}
570 do_test conflict2-9.17 {
572 INSERT INTO t2 VALUES(3,3,3,3,1);
575 } {1 {UNIQUE constraint failed: t2.e}}
576 do_test conflict2-9.18 {
578 UPDATE t2 SET e=e+1 WHERE e=1;
581 } {1 {UNIQUE constraint failed: t2.e}}
582 do_test conflict2-9.19 {
586 INSERT INTO t2 VALUES(3,3,3,3,1);
589 } {1 {UNIQUE constraint failed: t2.e}}
590 verify_ex_errcode conflict2-9.21b SQLITE_CONSTRAINT_UNIQUE
591 do_test conflict2-9.20 {
592 catch {execsql {COMMIT}}
593 execsql {SELECT * FROM t3}
595 do_test conflict2-9.21 {
599 UPDATE t2 SET e=e+1 WHERE e=1;
602 } {1 {UNIQUE constraint failed: t2.e}}
603 verify_ex_errcode conflict2-9.21b SQLITE_CONSTRAINT_UNIQUE
604 do_test conflict2-9.22 {
605 catch {execsql {COMMIT}}
606 execsql {SELECT * FROM t3}
608 do_test conflict2-9.23 {
610 INSERT INTO t2 VALUES(3,3,1,3,3);
613 } {0 {2 2 2 2 2 3 3 1 3 3}}
614 do_test conflict2-9.24 {
616 UPDATE t2 SET c=c-1 WHERE c=2;
620 do_test conflict2-9.25 {
624 INSERT INTO t2 VALUES(3,3,1,3,3);
628 do_test conflict2-9.26 {
629 catch {execsql {COMMIT}}
630 execsql {SELECT * FROM t3}
633 do_test conflict2-10.1 {
637 INSERT OR ROLLBACK INTO t1 VALUES(1,2);
638 INSERT OR ROLLBACK INTO t1 VALUES(1,3);
641 execsql {SELECT * FROM t1}
643 do_test conflict2-10.2 {
646 CREATE UNIQUE INDEX t4x ON t4(x);
648 INSERT OR ROLLBACK INTO t4 VALUES(1);
649 INSERT OR ROLLBACK INTO t4 VALUES(1);
652 execsql {SELECT * FROM t4}
655 # Ticket #1171. Make sure statement rollbacks do not
656 # damage the database.
658 do_test conflict2-11.1 {
660 -- Create a database object (pages 2, 3 of the file)
662 CREATE TABLE abc(a PRIMARY KEY, b, c) WITHOUT rowid;
663 INSERT INTO abc VALUES(1, 2, 3);
664 INSERT INTO abc VALUES(4, 5, 6);
665 INSERT INTO abc VALUES(7, 8, 9);
670 # Set a small cache size so that changes will spill into
673 PRAGMA cache_size = 10;
676 # Make lots of changes. Because of the small cache, some
677 # (most?) of these changes will spill into the disk file.
678 # In other words, some of the changes will not be held in
683 -- Make sure the pager is in EXCLUSIVE state.
684 CREATE TABLE def(d, e, f);
685 INSERT INTO def VALUES
686 ('xxxxxxxxxxxxxxx', 'yyyyyyyyyyyyyyyy', 'zzzzzzzzzzzzzzzz');
687 INSERT INTO def SELECT * FROM def;
688 INSERT INTO def SELECT * FROM def;
689 INSERT INTO def SELECT * FROM def;
690 INSERT INTO def SELECT * FROM def;
691 INSERT INTO def SELECT * FROM def;
692 INSERT INTO def SELECT * FROM def;
693 INSERT INTO def SELECT * FROM def;
694 DELETE FROM abc WHERE a = 4;
697 # Execute a statement that does a statement rollback due to
698 # a constraint failure.
701 INSERT INTO abc SELECT 10, 20, 30 FROM def;
704 # Rollback the database. Verify that the state of the ABC table
705 # is unchanged from the beginning of the transaction. In other words,
706 # make sure the DELETE on table ABC that occurred within the transaction
713 } {1 2 3 4 5 6 7 8 9}
714 integrity_check conflict2-11.2
716 # Repeat test conflict2-11.1 but this time commit.
718 do_test conflict2-11.3 {
721 -- Make sure the pager is in EXCLUSIVE state.
722 UPDATE abc SET a=a+1;
723 CREATE TABLE def(d, e, f);
724 INSERT INTO def VALUES
725 ('xxxxxxxxxxxxxxx', 'yyyyyyyyyyyyyyyy', 'zzzzzzzzzzzzzzzz');
726 INSERT INTO def SELECT * FROM def;
727 INSERT INTO def SELECT * FROM def;
728 INSERT INTO def SELECT * FROM def;
729 INSERT INTO def SELECT * FROM def;
730 INSERT INTO def SELECT * FROM def;
731 INSERT INTO def SELECT * FROM def;
732 INSERT INTO def SELECT * FROM def;
733 DELETE FROM abc WHERE a = 4;
736 INSERT INTO abc SELECT 10, 20, 30 FROM def;
742 } {1 2 3 4 5 6 7 8 9}
743 # Repeat test conflict2-11.1 but this time commit.
745 do_test conflict2-11.5 {
748 -- Make sure the pager is in EXCLUSIVE state.
749 CREATE TABLE def(d, e, f);
750 INSERT INTO def VALUES
751 ('xxxxxxxxxxxxxxx', 'yyyyyyyyyyyyyyyy', 'zzzzzzzzzzzzzzzz');
752 INSERT INTO def SELECT * FROM def;
753 INSERT INTO def SELECT * FROM def;
754 INSERT INTO def SELECT * FROM def;
755 INSERT INTO def SELECT * FROM def;
756 INSERT INTO def SELECT * FROM def;
757 INSERT INTO def SELECT * FROM def;
758 INSERT INTO def SELECT * FROM def;
759 DELETE FROM abc WHERE a = 4;
762 INSERT INTO abc SELECT 10, 20, 30 FROM def;
769 integrity_check conflict2-11.6
771 # Make sure UPDATE OR REPLACE works on tables that have only
772 # an INTEGER PRIMARY KEY.
774 do_test conflict2-12.1 {
776 CREATE TABLE t5(a INTEGER PRIMARY KEY, b text) WITHOUT rowid;
777 INSERT INTO t5 VALUES(1,'one');
778 INSERT INTO t5 VALUES(2,'two');
782 do_test conflict2-12.2 {
784 UPDATE OR IGNORE t5 SET a=a+1 WHERE a=1;
788 do_test conflict2-12.3 {
790 UPDATE t5 SET a=a+1 WHERE a=1;
792 } {1 {UNIQUE constraint failed: t5.a}}
793 verify_ex_errcode conflict2-12.3b SQLITE_CONSTRAINT_PRIMARYKEY
794 do_test conflict2-12.4 {
796 UPDATE OR REPLACE t5 SET a=a+1 WHERE a=1;
802 # Ticket [c38baa3d969eab7946dc50ba9d9b4f0057a19437]
803 # REPLACE works like ABORT on a CHECK constraint.
805 do_test conflict2-13.1 {
807 CREATE TABLE t13(a PRIMARY KEY CHECK(a!=2)) WITHOUT rowid;
809 REPLACE INTO t13 VALUES(1);
812 REPLACE INTO t13 VALUES(2);
814 } {1 {CHECK constraint failed: t13}}
815 verify_ex_errcode conflict2-13.1b SQLITE_CONSTRAINT_CHECK
816 do_test conflict2-13.2 {
818 REPLACE INTO t13 VALUES(3);
824 # Test for an unreleased bug in the REPLACE conflict resolution
825 # discovered on 2013-11-09.
827 do_execsql_test conflict2-14.1 {
828 DROP TABLE IF EXISTS t1;
830 x TEXT PRIMARY KEY NOT NULL,
834 INSERT INTO t1 VALUES('alpha','beta',1);
835 CREATE UNIQUE INDEX t1xy ON t1(x,y);
836 REPLACE INTO t1(x,y,z) VALUES('alpha','gamma',1);
837 PRAGMA integrity_check;
838 SELECT x,y FROM t1 INDEXED BY t1xy;
839 SELECT x,y,z FROM t1 NOT INDEXED;
840 } {ok alpha gamma alpha gamma 1}
841 do_execsql_test conflict2-14.2 {
842 DROP TABLE IF EXISTS t1;
844 x TEXT PRIMARY KEY NOT NULL,
848 INSERT INTO t1 VALUES('alpha','beta',1);
849 CREATE UNIQUE INDEX t1xy ON t1(x,y);
850 REPLACE INTO t1(x,y,z) VALUES('alpha','gamma',1);
851 PRAGMA integrity_check;
852 SELECT x,y FROM t1 INDEXED BY t1xy;
853 SELECT x,y,z FROM t1 NOT INDEXED;
854 } {ok alpha gamma alpha gamma 1}