summaryrefslogtreecommitdiffstats
path: root/contrib/bloom/expected/bloom.out
blob: dae12a7d3e7e04763192adcb61ab0932133c8a57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
CREATE EXTENSION bloom;
CREATE TABLE tst (
	i	int4,
	t	text
);
INSERT INTO tst SELECT i%10, substr(md5(i::text), 1, 1) FROM generate_series(1,2000) i;
CREATE INDEX bloomidx ON tst USING bloom (i, t) WITH (col1 = 3);
ALTER INDEX bloomidx SET (length=80);
SET enable_seqscan=on;
SET enable_bitmapscan=off;
SET enable_indexscan=off;
SELECT count(*) FROM tst WHERE i = 7;
 count 
-------
   200
(1 row)

SELECT count(*) FROM tst WHERE t = '5';
 count 
-------
   112
(1 row)

SELECT count(*) FROM tst WHERE i = 7 AND t = '5';
 count 
-------
    13
(1 row)

SET enable_seqscan=off;
SET enable_bitmapscan=on;
SET enable_indexscan=on;
EXPLAIN (COSTS OFF) SELECT count(*) FROM tst WHERE i = 7;
                QUERY PLAN                 
-------------------------------------------
 Aggregate
   ->  Bitmap Heap Scan on tst
         Recheck Cond: (i = 7)
         ->  Bitmap Index Scan on bloomidx
               Index Cond: (i = 7)
(5 rows)

EXPLAIN (COSTS OFF) SELECT count(*) FROM tst WHERE t = '5';
                QUERY PLAN                 
-------------------------------------------
 Aggregate
   ->  Bitmap Heap Scan on tst
         Recheck Cond: (t = '5'::text)
         ->  Bitmap Index Scan on bloomidx
               Index Cond: (t = '5'::text)
(5 rows)

EXPLAIN (COSTS OFF) SELECT count(*) FROM tst WHERE i = 7 AND t = '5';
                       QUERY PLAN                        
---------------------------------------------------------
 Aggregate
   ->  Bitmap Heap Scan on tst
         Recheck Cond: ((i = 7) AND (t = '5'::text))
         ->  Bitmap Index Scan on bloomidx
               Index Cond: ((i = 7) AND (t = '5'::text))
(5 rows)

SELECT count(*) FROM tst WHERE i = 7;
 count 
-------
   200
(1 row)

SELECT count(*) FROM tst WHERE t = '5';
 count 
-------
   112
(1 row)

SELECT count(*) FROM tst WHERE i = 7 AND t = '5';
 count 
-------
    13
(1 row)

DELETE FROM tst;
INSERT INTO tst SELECT i%10, substr(md5(i::text), 1, 1) FROM generate_series(1,2000) i;
VACUUM ANALYZE tst;
SELECT count(*) FROM tst WHERE i = 7;
 count 
-------
   200
(1 row)

SELECT count(*) FROM tst WHERE t = '5';
 count 
-------
   112
(1 row)

SELECT count(*) FROM tst WHERE i = 7 AND t = '5';
 count 
-------
    13
(1 row)

DELETE FROM tst WHERE i > 1 OR t = '5';
VACUUM tst;
INSERT INTO tst SELECT i%10, substr(md5(i::text), 1, 1) FROM generate_series(1,2000) i;
SELECT count(*) FROM tst WHERE i = 7;
 count 
-------
   200
(1 row)

SELECT count(*) FROM tst WHERE t = '5';
 count 
-------
   112
(1 row)

SELECT count(*) FROM tst WHERE i = 7 AND t = '5';
 count 
-------
    13
(1 row)

VACUUM FULL tst;
SELECT count(*) FROM tst WHERE i = 7;
 count 
-------
   200
(1 row)

SELECT count(*) FROM tst WHERE t = '5';
 count 
-------
   112
(1 row)

SELECT count(*) FROM tst WHERE i = 7 AND t = '5';
 count 
-------
    13
(1 row)

-- Try an unlogged table too
CREATE UNLOGGED TABLE tstu (
	i	int4,
	t	text
);
INSERT INTO tstu SELECT i%10, substr(md5(i::text), 1, 1) FROM generate_series(1,2000) i;
CREATE INDEX bloomidxu ON tstu USING bloom (i, t) WITH (col2 = 4);
SET enable_seqscan=off;
SET enable_bitmapscan=on;
SET enable_indexscan=on;
EXPLAIN (COSTS OFF) SELECT count(*) FROM tstu WHERE i = 7;
                 QUERY PLAN                 
--------------------------------------------
 Aggregate
   ->  Bitmap Heap Scan on tstu
         Recheck Cond: (i = 7)
         ->  Bitmap Index Scan on bloomidxu
               Index Cond: (i = 7)
(5 rows)

EXPLAIN (COSTS OFF) SELECT count(*) FROM tstu WHERE t = '5';
                 QUERY PLAN                 
--------------------------------------------
 Aggregate
   ->  Bitmap Heap Scan on tstu
         Recheck Cond: (t = '5'::text)
         ->  Bitmap Index Scan on bloomidxu
               Index Cond: (t = '5'::text)
(5 rows)

EXPLAIN (COSTS OFF) SELECT count(*) FROM tstu WHERE i = 7 AND t = '5';
                       QUERY PLAN                        
---------------------------------------------------------
 Aggregate
   ->  Bitmap Heap Scan on tstu
         Recheck Cond: ((i = 7) AND (t = '5'::text))
         ->  Bitmap Index Scan on bloomidxu
               Index Cond: ((i = 7) AND (t = '5'::text))
(5 rows)

SELECT count(*) FROM tstu WHERE i = 7;
 count 
-------
   200
(1 row)

SELECT count(*) FROM tstu WHERE t = '5';
 count 
-------
   112
(1 row)

SELECT count(*) FROM tstu WHERE i = 7 AND t = '5';
 count 
-------
    13
(1 row)

RESET enable_seqscan;
RESET enable_bitmapscan;
RESET enable_indexscan;
-- Run amvalidator function on our opclasses
SELECT opcname, amvalidate(opc.oid)
FROM pg_opclass opc JOIN pg_am am ON am.oid = opcmethod
WHERE amname = 'bloom'
ORDER BY 1;
 opcname  | amvalidate 
----------+------------
 int4_ops | t
 text_ops | t
(2 rows)

--
-- relation options
--
DROP INDEX bloomidx;
CREATE INDEX bloomidx ON tst USING bloom (i, t) WITH (length=7, col1=4);
SELECT reloptions FROM pg_class WHERE oid = 'bloomidx'::regclass;
    reloptions     
-------------------
 {length=7,col1=4}
(1 row)

-- check for min and max values
\set VERBOSITY terse
CREATE INDEX bloomidx2 ON tst USING bloom (i, t) WITH (length=0);
ERROR:  value 0 out of bounds for option "length"
CREATE INDEX bloomidx2 ON tst USING bloom (i, t) WITH (col1=0);
ERROR:  value 0 out of bounds for option "col1"