在postgresql9.6版本中,在uuid类型上建gin索引,提示如下错误:
MH=# create index idx_r_data_main_test_full on r_data_main_test using gin(data_id,parent_coll_id,fs_id,data_name,size,mode,uid,gid,create_ts,modify_ts);
ERROR: data type uuid has no default operator class for access method "gin"
HINT: You must specify an operator class for the index or define a default operator class for the data type.
网上查看,说到postgres10版本才可以在uuid类型上建gin类型,在9.6版本中应该如何解决呢?
在安装目录的 share/contrib 下面,可以找到 uuid-ossp.sql,使用以下命令:
[c-sharp] view plain copy
psql -d pisces -U postgres -f D:/Service/PostgreSQL/9.0/share/contrib/uuid-ossp.sql
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。