当前位置:网站首页>Gbase 8C system table PG_ amop
Gbase 8C system table PG_ amop
2022-07-03 02:22:00 【Dazhuang twelve】
pg_amop The system table stores information about the association with the access method operator family . If an operator is a member of an operator family , Will occupy a row in this table . A family member is a search Operator or a ordering The operator . An operator can appear in multiple families , But it cannot appear in multiple search positions or sorting positions in a family .
name | type | quote | describe |
oid | oid | Row identifier ( Hidden attribute , Must be explicitly selected to display ) | |
amopfamily | oid | pg_opfamily.oid | The operator family of this item |
amoplefttype | oid | pg_type.oid | The left hand input data type of the operator |
amoprighttype | oid | pg_type.oid | The right hand input data type of the operator |
amopstrategy | int2 | Operator policy number | |
amoppurpose | char | Operation compliant ,s Represent search ,o Indicates sort | |
amopopr | oid | pg_operator.oid | Operator OID |
amopmethod | oid | pg_am.oid | Use the index access method of this operator family |
amopsortfamily | oid | pg_opfamily.oid | If it is a sort operator , This item will be based on this B Tree operator family sort , If it is a search operator, it is 0 |
search The operator indicates that an index of this operator family can be searched , Find all the satisfaction WHERE indexed_column operator constant The line of . obviously , Such an operator must return a Boolean value , And its left input type must match the field data type of the index .
ordering The operator indicates that an index of this operator family can be scanned , Return to ORDER BYindexed_column operator constant Rows represented in sequence . Such an operator can return any sortable data type , Its left input type must also match the field data type of the index . ORDER BY The exact semantics of is by amopsortfamily Field specified , This field must refer to a... For the return type of the operator btree Operator family .
边栏推荐
猜你喜欢

Coroutinecontext in kotlin

Tongda OA V12 process center

基于线程池的生产者消费者模型(含阻塞队列)

Oauth2.0 authentication, login and access "/oauth/token", how to get the value of request header authorization (basictoken)???

PyTorch 卷积网络正则化 DropBlock

微信小程序開發工具 POST net::ERR_PROXY_CONNECTION_FAILED 代理問題

Wechat applet Development Tool Post net:: Err Proxy Connexion Problèmes d'agent défectueux

stm32F407-------DMA

How do it students find short-term internships? Which is better, short-term internship or long-term internship?
![[Flutter] dart: class;abstract class;factory;类、抽象类、工厂构造函数](/img/06/ab333a4752de27eae2dd937cf579e2.png)
[Flutter] dart: class;abstract class;factory;类、抽象类、工厂构造函数
随机推荐
stm32F407-------DMA
stm32F407-------ADC
Leetcode (540) -- a single element in an ordered array
Introduce in detail how to communicate with Huawei cloud IOT through mqtt protocol
leetcode961. Find the elements repeated N times in the array with length 2n
My creation anniversary
GBase 8c 函数/存储过程参数(二)
Tongda OA V12 process center
Depth (penetration) selector:: v-deep/deep/ and > > >
Exception handling in kotlin process
苏世民:25条工作和生活原则
Socket programming
Solution for processing overtime orders (Overtime unpaid)
es6 filter() 数组过滤方法总结
8 free, HD, copyright free video material download websites are recommended
线程安全的单例模式
GBase 8c系统表-pg_collation
GBase 8c系统表-pg_amproc
How do it students find short-term internships? Which is better, short-term internship or long-term internship?
GBase 8c系统表-pg_am