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