codecamp

PostgreSQL 内建操作符类

PostgreSQL核心发布中包括如本文中的表 64.1中所示的GiST操作符类(附录 F中描述的一些可选模块提供了额外的GiST操作符类)。

表 64.1. 内建GiST操作符类

名称 索引数据类型 可索引操作符 排序操作符
box_ops box && &> &< &<| >> << <<| <@ @> @ |&> |>> ~ ~= <->
circle_ops circle && &> &< &<| >> << <<| <@ @> @ |&> |>> ~ ~= <->
inet_ops inet, cidr && >> >>= > >= <> << <<= < <= =
point_ops point >> >^ << <@ <@ <@ <^ ~= <->
poly_ops polygon && &> &< &<| >> << <<| <@ @> @ |&> |>> ~ ~= <->
range_ops 任何范围类型 && &> &< >> << <@ -|- = @> @>
tsquery_ops tsquery <@ @>
tsvector_ops tsvector @@

由于历史原因,inet_ops操作符类不是类型inetcidr的默认操作符类。要使用它,需要在CREATE INDEX中指明操作符类的名称,例如

CREATE INDEX ON my_table USING GIST (my_inet_column inet_ops);


PostgreSQL 简介
PostgreSQL 可扩展性
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PostgreSQL SQL语言

PostgreSQL 服务器管理

PostgreSQL 客户端接口

PostgreSQL 服务器编程

PostgreSQL 参考

PostgreSQL 内部

PostgreSQL 附录

PostgreSQL 参考书目

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }