Name: | abstime_ops |
OID: | 2227 |
Owner: | postgres |
Default: | |
For type: | abstime |
Access method: | hash |
Storage: | |
Comment: | |
Operator: | 1 =(abstime,abstime) |
Operator: | |
Operator: | |
Operator: | |
Function: | hashint4(integer) |
Function: | () |
Function: | () |
Function: | () |
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