Lines Matching refs:f1
22 proc f1 {x} {return $x}
24 db function f1 -innocuous -deterministic f1
25 db function f2 -deterministic f1
26 db function f3 -directonly -deterministic f1
28 CREATE TABLE t1(a, b AS (f1(a+1)), c AS (f2(a+2)));
125 CREATE INDEX t4a ON t4(a) WHERE f1(c);
126 SELECT a FROM t4 WHERE f1(c) ORDER BY a;
156 CREATE INDEX t5x1 ON t5(a+f1(b));
157 SELECT * FROM t5 INDEXED BY t5x1 WHERE a+f1(b)=3;
173 db function f1 -innocuous -deterministic f1
174 db function f2 -deterministic f1
175 db function f3 -directonly -deterministic f1