当前位置:网站首页>GBase 8c系统表-pg_amop
GBase 8c系统表-pg_amop
2022-07-03 02:18:00 【大壮十二】
pg_amop系统表存储有关和访问方法操作符族关联的信息。如果一个操作符是一个操作符族中的成员,则在这个表中会占据一行。一个族成员是一个search操作符或一个ordering操作符。一个操作符可以在多个族中出现,但是不能在一个族中的多个搜索位置或多个排序位置中出现。
名称 | 类型 | 引用 | 描述 |
oid | oid | 行标识符(隐藏属性,必须被显式选择才会显示) | |
amopfamily | oid | pg_opfamily.oid | 这个项所在的操作符族 |
amoplefttype | oid | pg_type.oid | 操作符的左手输入数据类型 |
amoprighttype | oid | pg_type.oid | 操作符的右手输入数据类型 |
amopstrategy | int2 | 操作符策略号 | |
amoppurpose | char | 操作符目的,s表示搜索,o表示排序 | |
amopopr | oid | pg_operator.oid | 操作符的OID |
amopmethod | oid | pg_am.oid | 使用此操作符族的索引访问方法 |
amopsortfamily | oid | pg_opfamily.oid | 如果是一个排序操作符,该项会根据这个 B树操作符族排序,如果是一个搜索操作符则为0 |
search操作符表明这个操作符族的一个索引可以被搜索,找到所有满足WHERE indexed_column operator constant的行。显然,这样的操作符必须返回布尔值,并且它的左输入类型必须匹配索引的字段数据类型。
ordering操作符表明这个操作符族的一个索引可以被扫描,返回以ORDER BYindexed_column operator constant顺序表示的行。这样的操作符可以返回任意可排序的数据类型,它的左输入类型也必须匹配索引的字段数据类型。 ORDER BY的确切的语义是由amopsortfamily字段指定的,该字段必须为操作符的返回类型引用一个btree操作符族。
边栏推荐
- How do browsers render pages?
- What are the key points often asked in the redis interview
- Codeforces Round #418 (Div. 2) D. An overnight dance in discotheque
- Job object of collaboration in kotlin
- Leetcode(540)——有序数组中的单一元素
- Exception handling in kotlin process
- GBase 8c系统表-pg_am
- 通达OA 首页门户工作台
- COM和CN
- stm32F407-------ADC
猜你喜欢

Stm32f407 ------- IIC communication protocol

Anna: Beibei, can you draw?

Servlet中数据传到JSP页面使用el表达式${}无法显示问题

Detailed introduction to the deployment and usage of the Nacos registry

内存池(内核角度理解new开辟空间的过程)

微信小程序开发工具 POST net::ERR_PROXY_CONNECTION_FAILED 代理问题

4. 类和对象

Trial setup and use of idea GoLand development tool

How can retail enterprises open the second growth curve under the full link digital transformation

elastic stack
随机推荐
缺少库while loading shared libraries: libisl.so.15: cannot open shared object file: No such file
The data in servlet is transferred to JSP page, and the problem cannot be displayed using El expression ${}
awk从入门到入土(2)认识awk内置变量和变量的使用
[Flutter] dart: class; abstract class; factory; Class, abstract class, factory constructor
Method of removing webpage scroll bar and inner and outer margins
Awk from getting started to getting into the ground (3) the built-in functions printf and print of awk realize formatted printing
Kotlin middle process understanding and Practice (II)
Swift开发学习
UDP receive queue and multiple initialization test
通达OA 首页门户工作台
Summary of ES6 filter() array filtering methods
Basic operation of view
Iptables layer 4 forwarding
基于线程池的生产者消费者模型(含阻塞队列)
Startup mode and scope builder of collaboration in kotlin
Codeforces Round #418 (Div. 2) D. An overnight dance in discotheque
File class (check)
Face recognition 6-face_ recognition_ Py based on OpenCV, face detection and real-time tracking using Haar cascade and Dlib Library
GBase 8c系统表pg_database
[fluent] fluent debugging (debug debugging window | viewing mobile phone log information | setting normal breakpoints | setting expression breakpoints)