Lines Matching refs:conf1
205 # conf1 The conflict resolution algorithm on the UNIQUE constraint
212 foreach {i conf1 conf2 cmd t0 t1 t2} {
235 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"}
239 CREATE TABLE t1(a,b,c,UNIQUE(a,b) $conf1);
264 # conf1 The conflict resolution algorithm on the NOT NULL constraint
271 foreach {i conf1 conf2 cmd t0 t1 t2} {
298 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"}
302 CREATE TABLE t1(a,b,c NOT NULL $conf1 DEFAULT 5);
332 # conf1 The conflict resolution algorithm on the UNIQUE constraint
339 foreach {i conf1 conf2 cmd t0 t1 t2} {
369 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"}
373 CREATE TABLE t1(a,b,c, UNIQUE(a) $conf1);