| Name: | macaddr_ops |
| OID: | 1984 |
| Owner: | postgres |
| Default: | |
| For type: | macaddr |
| Access method: | btree |
| Storage: | |
| Comment: | |
| Operator: | 1 <(macaddr,macaddr) |
| Operator: | 2 <=(macaddr,macaddr) |
| Operator: | 3 =(macaddr,macaddr) |
| Operator: | 4 >=(macaddr,macaddr) |
| Function: | macaddr_cmp(macaddr, 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