Snapshot of upstream SQLite 3.41.1
[sqlcipher.git] / test / bloom1.test
blob87a7c8632c43dce1c5d450cbe7efc932e9793e25
1 # 2022 October 06
3 # The author disclaims copyright to this source code.  In place of
4 # a legal notice, here is a blessing:
6 #    May you do good and not evil.
7 #    May you find forgiveness for yourself and forgive others.
8 #    May you share freely, never taking more than you give.
10 #***********************************************************************
12 # Tests for queries that use bloom filters
14 set testdir [file dirname $argv0]
15 source $testdir/tester.tcl
16 source $testdir/lock_common.tcl
17 source $testdir/malloc_common.tcl
19 set testprefix bloom1
21 # Tests 1.*  verify that the bloom filter code correctly handles the
22 # case where the RHS of an (<ipk-column> = ?) expression must be coerced
23 # to an integer before the comparison made.
25 do_execsql_test 1.0 {
26   CREATE TABLE t1(a, b);
27   CREATE TABLE t2(c INTEGER PRIMARY KEY, d);
30 do_execsql_test 1.1 {
31   INSERT INTO t1 VALUES('hello', 'world');
32   INSERT INTO t2 VALUES(14, 'fourteen');
35 do_execsql_test 1.2 {
36   ANALYZE sqlite_schema;
37   INSERT INTO sqlite_stat1 VALUES('t2','idx1','6 6');
38   ANALYZE sqlite_schema;
41 do_execsql_test 1.3 {
42   SELECT 'affinity!' FROM t1 CROSS JOIN t2 WHERE t2.c = '14';
43 } {affinity!}
46 reset_db
47 do_execsql_test 1.4 {
48   CREATE TABLE t1(a, b TEXT);
49   CREATE TABLE t2(c INTEGER PRIMARY KEY, d);
50   CREATE TABLE t3(e INTEGER PRIMARY KEY, f);
52   ANALYZE sqlite_schema;
53   INSERT INTO sqlite_stat1 VALUES('t1','idx1','600 6');
54   INSERT INTO sqlite_stat1 VALUES('t2','idx1','6 6');
55   INSERT INTO sqlite_stat1 VALUES('t3','idx2','6 6');
56   ANALYZE sqlite_schema;
58   INSERT INTO t1 VALUES(1, '123');
59   INSERT INTO t2 VALUES(123, 'one');
60   INSERT INTO t3 VALUES(123, 'two');
63 do_execsql_test 1.5 {
64   SELECT 'result' FROM t1, t2, t3 
65   WHERE t2.c=t1.b AND t2.d!='silly'
66     AND t3.e=t1.b AND t3.f!='silly'
67 } {result}
69 # 2023-02-05
70 # https://sqlite.org/forum/forumpost/56de336385
72 # Do not employ a Bloom filter if the table being filtered or any table
73 # wo the left of the table being filtered lacks STAT1 data, since we
74 # cannot make a good Bloom filter usefulness determination without STAT1
75 # data.
77 reset_db
78 do_execsql_test 2.0 {
79   CREATE TABLE objs(c INTEGER, s INTEGER, p INTEGER, o INTEGER);
80   CREATE UNIQUE INDEX objs_cspo ON objs(o,p,c,s);
81   ANALYZE;
82   DELETE FROM sqlite_stat1;
83   INSERT INTO sqlite_stat1 VALUES('objs','objs_cspo','520138 21 20 19 1');
84   ANALYZE sqlite_schema;
86 do_eqp_test 2.1 {
87   WITH RECURSIVE transit(x) AS (
88      SELECT s FROM objs WHERE p=9 AND o=32805
89      UNION
90      SELECT objs.s FROM objs, transit WHERE objs.p=9 AND objs.o=transit.x
91   )
92   SELECT x FROM transit;
93 } {
94   QUERY PLAN
95   |--CO-ROUTINE transit
96   |  |--SETUP
97   |  |  `--SEARCH objs USING COVERING INDEX objs_cspo (o=? AND p=?)
98   |  `--RECURSIVE STEP
99   |     |--SCAN transit
100   |     `--SEARCH objs USING COVERING INDEX objs_cspo (o=? AND p=?)
101   `--SCAN transit
104 # 2023-02-28
105 # https://sqlite.org/forum/forumpost/0846211821
107 # Bloom filter gives an incorrect result if the collating sequence is
108 # anything other than binary.
110 reset_db
111 do_execsql_test 3.1 {
112   CREATE TABLE t0(x TEXT COLLATE rtrim);
113   INSERT INTO t0(x) VALUES ('a'), ('b'), ('c');
114   CREATE VIEW v0(y) AS SELECT DISTINCT x FROM t0;
115   SELECT count(*) FROM t0, v0 WHERE x='b ';
116 } 3
118 finish_test