Properties

Name: xid_ops 
OID: 2225 
Owner: postgres 
Default:  
For type: xid 
Access method: hash 
Storage:  
Comment:  
Operator: 1 =(xid,xid) 
Operator:  
Operator:  
Operator:  
Function: hashint4(integer) 
Function: () 
Function: () 
Function: () 

SQL


CREATE OPERATOR CLASS xid_ops
    DEFAULT FOR TYPE xid USING hash AS
    OPERATOR 1 =(xid,xid) ,
    FUNCTION 1 hashint4(integer);


ALTER OPERATOR CLASS pg_catalog.xid_ops USING hash OWNER TO postgres;

See Also

List of operator classes