Lines Matching refs:y
28 CREATE TABLE t1(x INTEGER, y INTEGER);
34 CREATE INDEX t1y ON t1(y);
49 1 "x = 4 AND y = 19" {t1x (x=?)}
50 2 "x = 19 AND y = 4" {t1y (y=?)}
51 3 "x = '4' AND y = '19'" {t1x (x=?)}
52 4 "x = '19' AND y = '4'" {t1y (y=?)}
53 5 "x = substr('5195', 2, 2) AND y = substr('145', 2, 1)" {t1y (y=?)}
54 6 "x = substr('145', 2, 1) AND y = substr('5195', 2, 2)" {t1x (x=?)}
56 7 "x = substr('5195', 2, 2+0) AND y = substr('145', 2, 1+0)" {t1y (y=?)}
57 8 "x = substr('145', 2, 1+0) AND y = substr('5195', 2, 2+0)" {t1y (y=?)}
59 9 "x = str('19') AND y = str('4')" {t1y (y=?)}
60 10 "x = str('4') AND y = str('19')" {t1y (y=?)}
62 11 "x = nullif('19', 0) AND y = nullif('4', 0)" {t1y (y=?)}
63 12 "x = nullif('4', 0) AND y = nullif('19', 0)" {t1y (y=?)}
72 SELECT * FROM t1 WHERE x = substr('145', 2, 1) AND y = func(1, 2, 3)
75 UPDATE t1 SET y=y+1 WHERE x = substr('145', 2, 1) AND y = func(1, 2, 3)
89 1 "x = det4() AND y = det19()" {t1x (x=?)}
90 2 "x = det19() AND y = det4()" {t1y (y=?)}
92 3 "x = nondet4() AND y = nondet19()" {t1y (y=?)}
93 4 "x = nondet19() AND y = nondet4()" {t1y (y=?)}
105 SELECT * FROM t1 WHERE x = error('error one') AND y = 4;
109 SELECT * FROM t1 WHERE x = zeroblob(2200000000) AND y = 4;
116 SELECT * FROM t1 WHERE x = dstr() AND y = 11;
120 SELECT * FROM t1 WHERE x = test_zeroblob(1100000) AND y = 4;