Properties

Name: time_ops 
OID: 1996 
Owner: postgres 
Default:  
For type: time 
Access method: btree 
Storage:  
Comment:  
Operator: 1 <(time,time) 
Operator: 2 <=(time,time) 
Operator: 3 =(time,time) 
Operator: 4 >=(time,time) 
Function: time_cmp(time without time zone, time without time zone) 
Function: () 
Function: () 
Function: () 

SQL


CREATE OPERATOR CLASS time_ops
    DEFAULT FOR TYPE time without time zone USING btree AS
    OPERATOR 1 <(time without time zone,time without time zone) ,
    OPERATOR 2 <=(time without time zone,time without time zone) ,
    OPERATOR 3 =(time without time zone,time without time zone) ,
    OPERATOR 4 >=(time without time zone,time without time zone) ,
    OPERATOR 5 >(time without time zone,time without time zone) ,
    FUNCTION 1 time_cmp(time without time zone,time without time zone);


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

See Also

List of operator classes