Name: | timetz_ops |
OID: | 2001 |
Owner: | postgres |
Default: | |
For type: | timetz |
Access method: | hash |
Storage: | |
Comment: | |
Operator: | 1 =(timetz,timetz) |
Operator: | |
Operator: | |
Operator: | |
Function: | timetz_hash(time with time zone) |
Function: | () |
Function: | () |
Function: | () |
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