Name: | macaddr_ops |
OID: | 1985 |
Owner: | postgres |
Default: | |
For type: | macaddr |
Access method: | hash |
Storage: | |
Comment: | |
Operator: | 1 =(macaddr,macaddr) |
Operator: | |
Operator: | |
Operator: | |
Function: | hashmacaddr(macaddr) |
Function: | () |
Function: | () |
Function: | () |
CREATE OPERATOR CLASS macaddr_ops
DEFAULT FOR TYPE macaddr USING btree AS
OPERATOR 1 <(macaddr,macaddr) ,
OPERATOR 2 <=(macaddr,macaddr) ,
OPERATOR 3 =(macaddr,macaddr) ,
OPERATOR 4 >=(macaddr,macaddr) ,
OPERATOR 5 >(macaddr,macaddr) ,
FUNCTION 1 macaddr_cmp(macaddr,macaddr);
ALTER OPERATOR CLASS pg_catalog.macaddr_ops USING btree OWNER TO postgres;
See Also
List of operator classes