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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
|
set enable_seqscan=off;
CREATE TABLE test_text (
i text
);
INSERT INTO test_text VALUES ('a'),('ab'),('abc'),('abb'),('axy'),('xyz');
CREATE INDEX idx_text ON test_text USING rum (i);
SELECT * FROM test_text WHERE i<'abc' ORDER BY i;
i
-----
a
ab
abb
(3 rows)
SELECT * FROM test_text WHERE i<='abc' ORDER BY i;
i
-----
a
ab
abb
abc
(4 rows)
SELECT * FROM test_text WHERE i='abc' ORDER BY i;
i
-----
abc
(1 row)
SELECT * FROM test_text WHERE i>='abc' ORDER BY i;
i
-----
abc
axy
xyz
(3 rows)
SELECT * FROM test_text WHERE i>'abc' ORDER BY i;
i
-----
axy
xyz
(2 rows)
CREATE TABLE test_text_o AS SELECT id::text, t FROM tsts;
SELECT id FROM test_text_o WHERE t @@ 'wr&qh' AND id <= '400' ORDER BY id;
id
-----
135
16
168
232
252
354
355
371
39
(9 rows)
SELECT id FROM test_text_o WHERE t @@ 'wr&qh' AND id >= '400' ORDER BY id;
id
-----
406
415
428
457
458
484
496
71
(8 rows)
CREATE INDEX test_text_o_idx ON test_text_o USING rum
(t rum_tsvector_addon_ops, id)
WITH (attach = 'id', to = 't');
RESET enable_indexscan;
RESET enable_indexonlyscan;
SET enable_bitmapscan=OFF;
SET enable_seqscan = off;
EXPLAIN (costs off)
SELECT id FROM test_text_o WHERE t @@ 'wr&qh' AND id <= '400' ORDER BY id;
QUERY PLAN
---------------------------------------------------------------------------------
Sort
Sort Key: id
-> Index Scan using test_text_o_idx on test_text_o
Index Cond: ((t @@ '''wr'' & ''qh'''::tsquery) AND (id <= '400'::text))
(4 rows)
SELECT id FROM test_text_o WHERE t @@ 'wr&qh' AND id <= '400' ORDER BY id;
id
-----
135
16
168
232
252
354
355
371
39
(9 rows)
EXPLAIN (costs off)
SELECT id FROM test_text_o WHERE t @@ 'wr&qh' AND id >= '400' ORDER BY id;
QUERY PLAN
---------------------------------------------------------------------------------
Sort
Sort Key: id
-> Index Scan using test_text_o_idx on test_text_o
Index Cond: ((t @@ '''wr'' & ''qh'''::tsquery) AND (id >= '400'::text))
(4 rows)
SELECT id FROM test_text_o WHERE t @@ 'wr&qh' AND id >= '400' ORDER BY id;
id
-----
406
415
428
457
458
484
496
71
(8 rows)
CREATE TABLE test_text_a AS SELECT id::text, t FROM tsts;
-- Should fail, temporarly it isn't allowed to order an index over pass-by-reference column
CREATE INDEX test_text_a_idx ON test_text_a USING rum
(t rum_tsvector_addon_ops, id)
WITH (attach = 'id', to = 't', order_by_attach='t');
ERROR: doesn't support order index over pass-by-reference column
EXPLAIN (costs off)
SELECT count(*) FROM test_text_a WHERE id < '400';
QUERY PLAN
------------------------------------
Aggregate
-> Seq Scan on test_text_a
Filter: (id < '400'::text)
(3 rows)
SELECT count(*) FROM test_text_a WHERE id < '400';
count
-------
337
(1 row)
EXPLAIN (costs off)
SELECT id FROM test_text_a WHERE t @@ 'wr&qh' AND id <= '400' ORDER BY id;
QUERY PLAN
-----------------------------------------------------------------------------
Sort
Sort Key: id
-> Seq Scan on test_text_a
Filter: ((t @@ '''wr'' & ''qh'''::tsquery) AND (id <= '400'::text))
(4 rows)
SELECT id FROM test_text_a WHERE t @@ 'wr&qh' AND id <= '400' ORDER BY id;
id
-----
135
16
168
232
252
354
355
371
39
(9 rows)
EXPLAIN (costs off)
SELECT id FROM test_text_a WHERE t @@ 'wr&qh' AND id >= '400' ORDER BY id;
QUERY PLAN
-----------------------------------------------------------------------------
Sort
Sort Key: id
-> Seq Scan on test_text_a
Filter: ((t @@ '''wr'' & ''qh'''::tsquery) AND (id >= '400'::text))
(4 rows)
SELECT id FROM test_text_a WHERE t @@ 'wr&qh' AND id >= '400' ORDER BY id;
id
-----
406
415
428
457
458
484
496
71
(8 rows)
CREATE TABLE test_text_h_o AS SELECT id::text, t FROM tsts;
CREATE INDEX test_text_h_o_idx ON test_text_h_o USING rum
(t rum_tsvector_hash_addon_ops, id)
WITH (attach = 'id', to = 't');
EXPLAIN (costs off)
SELECT id FROM test_text_h_o WHERE t @@ 'wr&qh' AND id <= '400' ORDER BY id;
QUERY PLAN
---------------------------------------------------------------------------------
Sort
Sort Key: id
-> Index Scan using test_text_h_o_idx on test_text_h_o
Index Cond: ((t @@ '''wr'' & ''qh'''::tsquery) AND (id <= '400'::text))
(4 rows)
SELECT id FROM test_text_h_o WHERE t @@ 'wr&qh' AND id <= '400' ORDER BY id;
id
-----
135
16
168
232
252
354
355
371
39
(9 rows)
EXPLAIN (costs off)
SELECT id FROM test_text_h_o WHERE t @@ 'wr&qh' AND id >= '400' ORDER BY id;
QUERY PLAN
---------------------------------------------------------------------------------
Sort
Sort Key: id
-> Index Scan using test_text_h_o_idx on test_text_h_o
Index Cond: ((t @@ '''wr'' & ''qh'''::tsquery) AND (id >= '400'::text))
(4 rows)
SELECT id FROM test_text_h_o WHERE t @@ 'wr&qh' AND id >= '400' ORDER BY id;
id
-----
406
415
428
457
458
484
496
71
(8 rows)
CREATE TABLE test_text_h_a AS SELECT id::text, t FROM tsts;
-- Should fail, temporarly it isn't allowed to order an index over pass-by-reference column
CREATE INDEX test_text_h_a_idx ON test_text_h_a USING rum
(t rum_tsvector_hash_addon_ops, id)
WITH (attach = 'id', to = 't', order_by_attach='t');
ERROR: doesn't support order index over pass-by-reference column
EXPLAIN (costs off)
SELECT count(*) FROM test_text_h_a WHERE id < '400';
QUERY PLAN
------------------------------------
Aggregate
-> Seq Scan on test_text_h_a
Filter: (id < '400'::text)
(3 rows)
SELECT count(*) FROM test_text_h_a WHERE id < '400';
count
-------
337
(1 row)
EXPLAIN (costs off)
SELECT id FROM test_text_h_a WHERE t @@ 'wr&qh' AND id <= '400' ORDER BY id;
QUERY PLAN
-----------------------------------------------------------------------------
Sort
Sort Key: id
-> Seq Scan on test_text_h_a
Filter: ((t @@ '''wr'' & ''qh'''::tsquery) AND (id <= '400'::text))
(4 rows)
SELECT id FROM test_text_h_a WHERE t @@ 'wr&qh' AND id <= '400' ORDER BY id;
id
-----
135
16
168
232
252
354
355
371
39
(9 rows)
EXPLAIN (costs off)
SELECT id FROM test_text_h_a WHERE t @@ 'wr&qh' AND id >= '400' ORDER BY id;
QUERY PLAN
-----------------------------------------------------------------------------
Sort
Sort Key: id
-> Seq Scan on test_text_h_a
Filter: ((t @@ '''wr'' & ''qh'''::tsquery) AND (id >= '400'::text))
(4 rows)
SELECT id FROM test_text_h_a WHERE t @@ 'wr&qh' AND id >= '400' ORDER BY id;
id
-----
406
415
428
457
458
484
496
71
(8 rows)
|