GBase 8c
其他
文章

PG_OPERATOR系统表介绍

GBase社区管理员
发表于2024-02-05 17:48:0712次浏览0个评论

PG_OPERATOR系统表存储有关操作符的信息。

名称

类型

引用

描述

oid

oid

-

行标识符(隐含属性,必须明确选择)。

oprname

name

-

操作符的名称。

oprnamespace

oid

href="https://opengauss.org/zh/docs/3.0.0/docs/Developerguide/PG_NAMESPACE.html" PG_NAMESPACE.oid

包含此操作符的名称空间的OID。

oprowner

oid

href="https://opengauss.org/zh/docs/3.0.0/docs/Developerguide/PG_AUTHID.html" PG_AUTHID.oid

操作符所有者。

oprkind

“char”

-

b=infix =中缀(“两边”)。

l=前缀(“左边”)。

r=后缀(“右边”)。

oprcanmerge

Boolean

-

这个操作符是否支持合并连接。

t(true):表示支持合并连接。

f(false):表示不支持合并连接。

oprcanhash

Boolean

-

这个操作符是否支持Hash连接。

t(true):表示支持Hash连接。

f(false):表示不支持Hash连接。

oprleft

oid

href="https://opengauss.org/zh/docs/3.0.0/docs/Developerguide/PG_TYPE.html" PG_TYPE.oid

左操作数的类型。

oprright

oid

href="https://opengauss.org/zh/docs/3.0.0/docs/Developerguide/PG_TYPE.html" PG_TYPE.oid

右操作数的类型。

oprresult

oid

href="https://opengauss.org/zh/docs/3.0.0/docs/Developerguide/PG_TYPE.html" PG_TYPE.oid

结果类型。

oprcom

oid

href="https://opengauss.org/zh/docs/3.0.0/docs/Developerguide/PG_OPERATOR.html" PG_OPERATOR.oid

此操作符的交换符,如果存在的话。

oprnegate

oid

href="https://opengauss.org/zh/docs/3.0.0/docs/Developerguide/PG_OPERATOR.html" PG_OPERATOR.oid

此操作符的反转器,如果存在的话。

oprcode

regproc

href="https://opengauss.org/zh/docs/3.0.0/docs/Developerguide/PG_PROC.html" PG_PROC.proname

实现这个操作符的函数。

oprrest

regproc

href="https://opengauss.org/zh/docs/3.0.0/docs/Developerguide/PG_PROC.html" PG_PROC.proname

此操作符的约束选择性计算函数。

oprjoin

regproc

href="https://opengauss.org/zh/docs/3.0.0/docs/Developerguide/PG_PROC.html" PG_PROC.proname

此操作符的连接选择性计算函数。

评论已关闭