Lines Matching refs:REPLACE
28 c NOT NULL ON CONFLICT REPLACE DEFAULT 6,
59 INSERT OR REPLACE INTO t1(b,c,d,e) VALUES(2,3,4,5);
87 INSERT OR REPLACE INTO t1(a,c,d,e) VALUES(1,3,4,5);
115 INSERT OR REPLACE INTO t1(a,b,c,d,e) VALUES(1,null,3,4,5);
136 INSERT OR REPLACE INTO t1(a,b,c,d,e) VALUES(1,2,null,4,5);
178 INSERT OR REPLACE INTO t1(e,d,c,b,a) VALUES(1,2,3,null,5);
195 UPDATE OR REPLACE t1 SET a=null;
227 UPDATE OR REPLACE t1 SET b=null, d=e, e=d;
298 INSERT OR REPLACE INTO t1(b,c,d,e) VALUES(2,3,4,5);
326 INSERT OR REPLACE INTO t1(a,c,d,e) VALUES(1,3,4,5);
354 INSERT OR REPLACE INTO t1(a,b,c,d,e) VALUES(1,null,3,4,5);
375 INSERT OR REPLACE INTO t1(a,b,c,d,e) VALUES(1,2,null,4,5);
417 INSERT OR REPLACE INTO t1(e,d,c,b,a) VALUES(1,2,3,null,5);
434 UPDATE OR REPLACE t1 SET a=null;
466 UPDATE OR REPLACE t1 SET b=null, d=e, e=d;