Lines Matching refs:conf1
207 # conf1 The conflict resolution algorithm on the UNIQUE constraint
214 foreach {i conf1 conf2 cmd t0 t1 t2} {
237 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"}
241 CREATE TABLE t1(a,b,c,UNIQUE(a,b) $conf1);
266 # conf1 The conflict resolution algorithm on the NOT NULL constraint
273 foreach {i conf1 conf2 cmd t0 t1 t2} {
300 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"}
304 CREATE TABLE t1(a,b,c NOT NULL $conf1 DEFAULT 5);
334 # conf1 The conflict resolution algorithm on the UNIQUE constraint
341 foreach {i conf1 conf2 cmd t0 t1 t2} {
371 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"}
375 CREATE TABLE t1(a,b,c, UNIQUE(a) $conf1);