索引与查询使用的 collate 不一致导致无法使用索引

索引与表的collate 不一致的情况下,会导致表上的索引不可用,这时要想使用索引,必须在SQL 语句指定建索引所用的collate。

数据库默认collate :

复制代码
test=# \l
                               List of databases
   Name    | Owner  | Encoding |   Collate   |    Ctype    | Access privileges
-----------+--------+----------+-------------+-------------+-------------------
 security  | system | UTF8     | en_US.UTF-8 | en_US.UTF-8 |
 template0 | system | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/system        +
           |        |          |             |             | system=CTc/system
 template1 | system | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/system        +
           |        |          |             |             | system=CTc/system
 test      | system | UTF8     | en_US.UTF-8 | en_US.UTF-8 |
(4 rows)
复制代码

例子1:使用 collate "C" :表使用collate "C" , 则索引及查询语句默认也使用 collate "C" 这可以使用索引。

复制代码
test=# create table t1(id text collate "C");
CREATE TABLE
test=# insert into t1 select generate_series(1000001,2000000);
INSERT 0 1000000
test=# create index idx_1 on t1(id);

CREATE INDEX
test=#
test=# analyze t1;
ANALYZE
test=# explain analyze select * from t1 where id='12345';
                                                  QUERY PLAN
---------------------------------------------------------------------------------------------------------------
 Index Only Scan using idx_1 on t1  (cost=0.42..8.44 rows=1 width=8) (actual time=0.033..0.033 rows=0 loops=1)
   Index Cond: (id = '12345'::text)
   Heap Fetches: 0
 Planning Time: 0.214 ms
 Execution Time: 0.054 ms
(5 rows)
复制代码

例子2:表使用 “C” ,索引使用 “POSIX” , 则SQL 默认使用 “C”。要想使用索引,SQL必须加 collate "POSIX";

复制代码
test=# drop index idx_1;
DROP INDEX
test=#
test=# create index idx_1 on t1(id collate "POSIX");
CREATE INDEX
test=# explain analyze select * from t1 where id='12345';
                                                   QUERY PLAN
----------------------------------------------------------------------------------------------------------------
 Gather  (cost=1000.00..10633.43 rows=1 width=8) (actual time=42.802..42.948 rows=0 loops=1)
   Workers Planned: 2
   Workers Launched: 2
   ->  Parallel Seq Scan on t1  (cost=0.00..9633.33 rows=1 width=8) (actual time=34.985..34.987 rows=0 loops=3)
         Filter: (id = '12345'::text)
         Rows Removed by Filter: 333333
 Planning Time: 0.226 ms
 Execution Time: 42.973 ms
(8 rows)

test=#
test=# explain analyze select * from t1 where id='12345' collate "POSIX";
                                                  QUERY PLAN
---------------------------------------------------------------------------------------------------------------
 Index Only Scan using idx_1 on t1  (cost=0.42..8.44 rows=1 width=8) (actual time=0.093..0.094 rows=0 loops=1)
   Index Cond: (id = '12345'::text COLLATE "POSIX")
   Heap Fetches: 0
 Planning Time: 0.095 ms
 Execution Time: 0.116 ms
(5 rows)
复制代码

 

posted @   KINGBASE研究院  阅读(96)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· Docker 太简单,K8s 太复杂?w7panel 让容器管理更轻松!
点击右上角即可分享
微信分享提示