admin管理员组文章数量:1129094
I create an index this way:
CREATE INDEX rep_tval_idx ON public.rep USING btree (t, lower(left(val, 127)));
Then I run a SELECT
with matching filter:
explain
select * from rep
where t=3 and lower(left(val, 127)) like 'operation%';
According to EXPLAIN
the index would not be used in this case.
How do I make it work with both conditions in the index? The field type is text
and I do not want to store more than 127 characters of its content.
EXPLAIN ANALYZE
results:
Index Scan using rep_tval_idx on rep (cost=0.14..3.67 rows=1 width=56) (actual time=0.044..0.045 rows=0 loops=1)
Index Cond: (t = 3)
Filter: (lower("left"(val, 127)) ~~ 'operation%'::text)
Rows Removed by Filter: 16
Planning Time: 0.112 ms
Execution Time: 0.069 ms
There is a single table of this structure, and when I use LOWER
or LEFT
separately, they work ok with the index.
CREATE TABLE public.rep (
id bigserial NOT NULL,
up int8 NOT NULL,
t int8 NOT NULL,
val text NULL,
CONSTRAINT rep_pk PRIMARY KEY (id)
);
CREATE INDEX rep_tval_idx ON public.rep USING btree (t, lower("left"(val, 127)));
CREATE INDEX rep_upt_idx ON public.rep USING btree (up, t);
Update
The problem was, I suppose, caused by testing on a small table. There are actually 2 different instances with a table in each. One is 125 rows large, while another is 310466 rows. In the bigger table I see that index working as it was expected to do. Yet, the execution time is still 0.064 ms, though it's a feature of the quintet data model.
Index Scan using rep_tval_idx on rep (cost=0.42..121.50 rows=120 width=56) (actual time=0.028..0.037 rows=8 loops=1)
Index Cond: ((t = 3) AND (lower("left"(val, 127)) >= 'operation'::text) AND (lower("left"(val, 127)) < 'operatioo'::text))
Filter: (lower("left"(val, 127)) ~~ 'operation%'::text)
Planning Time: 0.102 ms
Execution Time: 0.064 ms
I create an index this way:
CREATE INDEX rep_tval_idx ON public.rep USING btree (t, lower(left(val, 127)));
Then I run a SELECT
with matching filter:
explain
select * from rep
where t=3 and lower(left(val, 127)) like 'operation%';
According to EXPLAIN
the index would not be used in this case.
How do I make it work with both conditions in the index? The field type is text
and I do not want to store more than 127 characters of its content.
EXPLAIN ANALYZE
results:
Index Scan using rep_tval_idx on rep (cost=0.14..3.67 rows=1 width=56) (actual time=0.044..0.045 rows=0 loops=1)
Index Cond: (t = 3)
Filter: (lower("left"(val, 127)) ~~ 'operation%'::text)
Rows Removed by Filter: 16
Planning Time: 0.112 ms
Execution Time: 0.069 ms
There is a single table of this structure, and when I use LOWER
or LEFT
separately, they work ok with the index.
CREATE TABLE public.rep (
id bigserial NOT NULL,
up int8 NOT NULL,
t int8 NOT NULL,
val text NULL,
CONSTRAINT rep_pk PRIMARY KEY (id)
);
CREATE INDEX rep_tval_idx ON public.rep USING btree (t, lower("left"(val, 127)));
CREATE INDEX rep_upt_idx ON public.rep USING btree (up, t);
Update
The problem was, I suppose, caused by testing on a small table. There are actually 2 different instances with a table in each. One is 125 rows large, while another is 310466 rows. In the bigger table I see that index working as it was expected to do. Yet, the execution time is still 0.064 ms, though it's a feature of the quintet data model.
Index Scan using rep_tval_idx on rep (cost=0.42..121.50 rows=120 width=56) (actual time=0.028..0.037 rows=8 loops=1)
Index Cond: ((t = 3) AND (lower("left"(val, 127)) >= 'operation'::text) AND (lower("left"(val, 127)) < 'operatioo'::text))
Filter: (lower("left"(val, 127)) ~~ 'operation%'::text)
Planning Time: 0.102 ms
Execution Time: 0.064 ms
Share
Improve this question
edited Jan 9 at 1:05
Erwin Brandstetter
655k156 gold badges1.1k silver badges1.3k bronze badges
asked Jan 8 at 19:40
Alexey SamAlexey Sam
111 silver badge1 bronze badge
New contributor
Alexey Sam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
4
|
3 Answers
Reset to default 2btree
indexes are, by default, great for <
, >
or =
but can't be used for pattern matching.
You must create the index with the text_pattern_ops
to index character by character. See it in action in this blog
If the planner thinks that only one row will match t=3, then it might think there is no value in also checking the 2nd "column" against the index, since doing so saves no work over checking that one row against the table itself (which it needs to do anyway, as the shortcut pattern match might return false positives)
In the plan you show, it actually removed 16 rows based on the filter. However, that doesn't mean the planner thought it was going to need to remove 16 rows. The plan itself does not contain enough information to reconstruct the planners thought process here. If you want to double check what the planner was thinking, you could capture another plan based on the similar query but with only "where t=3" to see how many rows it thought that that would return.
It is frustrating to analyze these situations. The choice of whether to use one or more than one column from a multicolumn index when it thinks only one row will match on the first column does not seem to be very stable.
Use a COLLATE "C"
index. Much like the traditional (obsolete, really) text_pattern_ops
index, just simpler and more versatile. See:
- Is there a difference between text_pattern_ops and COLLATE "C"?
CREATE INDEX rep_tval_c_idx ON rep USING btree (t, lower(left(val, 127)) COLLATE "C");
Then your current query works as is, with index support on both columns.
Better
For your leading search pattern, you can simplify using the "starts with" operator ^@
in Postgres 15+. See:
- PostgreSQL LIKE query performance variations
SELECT * FROM rep
WHERE t = 3
AND lower(left(val, 127)) ^@ 'operation'; -- NO added wild card!
Typically, you don't need 127 leading characters to be selective. A much shorter string will do and make the index smaller, faster, and cheaper to maintain. Find the sweat spot for your data distribution and expected filter input. Typically, 10 - 20 characters are plenty. Then filter on the shortened string and on the full string like:
CREATE INDEX rep_tval_c_idx ON rep USING btree (t, left(val, 10) COLLATE "C");
SELECT * FROM rep
WHERE t = 3
AND lower(left(val, 10)) ^@ lower(left($1, 10)) -- bring in idx (logically redundant)
AND val ^@ $1; -- preserve full selectivity
fiddle
本文标签: sqlHow to combine LEFT and LOWER in a multicolumn index for leading text patternsStack Overflow
版权声明:本文标题:sql - How to combine LEFT and LOWER in a multicolumn index for leading text patterns? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736691404a1947950.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
Execution Time: 0.069 ms
is an issue. – Adrian Klaver Commented Jan 8 at 19:51LC_COLLATE = "C"
- which is rather uncommon. (But then the first query plan wouldn't make sense.) – Erwin Brandstetter Commented Jan 9 at 1:12