Properties

Name: timetz_ops 
OID: 2000 
Owner: postgres 
Default:  
For type: timetz 
Access method: btree 
Storage:  
Comment:  
Operator: 1 <(timetz,timetz) 
Operator: 2 <=(timetz,timetz) 
Operator: 3 =(timetz,timetz) 
Operator: 4 >=(timetz,timetz) 
Function: timetz_cmp(time with time zone, time with time zone) 
Function: () 
Function: () 
Function: () 

SQL


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


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

See Also

List of operator classes