52.34. pg_operator
pg_operator
The catalog pg_operator stores information about operators. See CREATE OPERATOR and User-Defined Operators for more information.
Column Type Description |
|---|
oid Row identifier |
oprname Name of the operator |
oprnamespace The OID of the namespace that contains this operator |
oprowner Owner of the operator |
oprkind
|
oprcanmerge This operator supports merge joins |
oprcanhash This operator supports hash joins |
oprleft Type of the left operand (zero for a prefix operator) |
oprright Type of the right operand |
oprresult Type of the result (zero for a not-yet-defined "shell" operator) |
oprcom Commutator of this operator (zero if none) |
oprnegate Negator of this operator (zero if none) |
oprcode Function that implements this operator (zero for a not-yet-defined "shell" operator) |
oprrest Restriction selectivity estimation function for this operator (zero if none) |
oprjoin Join selectivity estimation function for this operator (zero if none) |
: pg_operator Columns