Properties

Name: abstime_ops 
OID: 421 
Owner: postgres 
Default:  
For type: abstime 
Access method: btree 
Storage:  
Comment:  
Operator: 1 <(abstime,abstime) 
Operator: 2 <=(abstime,abstime) 
Operator: 3 =(abstime,abstime) 
Operator: 4 >=(abstime,abstime) 
Function: btabstimecmp(abstime, abstime) 
Function: () 
Function: () 
Function: () 

SQL


CREATE OPERATOR CLASS abstime_ops
    DEFAULT FOR TYPE abstime USING btree AS
    OPERATOR 1 <(abstime,abstime) ,
    OPERATOR 2 <=(abstime,abstime) ,
    OPERATOR 3 =(abstime,abstime) ,
    OPERATOR 4 >=(abstime,abstime) ,
    OPERATOR 5 >(abstime,abstime) ,
    FUNCTION 1 btabstimecmp(abstime,abstime);


ALTER OPERATOR CLASS pg_catalog.abstime_ops USING btree OWNER TO postgres;

See Also

List of operator classes