Name: | oid_ops |
OID: | 1990 |
Owner: | postgres |
Default: | |
For type: | oid |
Access method: | hash |
Storage: | |
Comment: | |
Operator: | 1 =(oid,oid) |
Operator: | |
Operator: | |
Operator: | |
Function: | hashoid(oid) |
Function: | () |
Function: | () |
Function: | () |
CREATE OPERATOR CLASS oid_ops
DEFAULT FOR TYPE oid USING btree AS
OPERATOR 1 <(oid,oid) ,
OPERATOR 2 <=(oid,oid) ,
OPERATOR 3 =(oid,oid) ,
OPERATOR 4 >=(oid,oid) ,
OPERATOR 5 >(oid,oid) ,
FUNCTION 1 btoidcmp(oid,oid);
ALTER OPERATOR CLASS pg_catalog.oid_ops USING btree OWNER TO postgres;
See Also
List of operator classes