Properties

Name: cidr_ops 
OID: 432 
Owner: postgres 
Default:  
For type: cidr 
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: () 

SQL


CREATE OPERATOR CLASS cidr_ops
    DEFAULT FOR TYPE cidr 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.cidr_ops USING btree OWNER TO postgres;

See Also

List of operator classes