Properties

Name: bytea_ops 
OID: 428 
Owner: postgres 
Default:  
For type: bytea 
Access method: btree 
Storage:  
Comment:  
Operator: 1 <(bytea,bytea) 
Operator: 2 <=(bytea,bytea) 
Operator: 3 =(bytea,bytea) 
Operator: 4 >=(bytea,bytea) 
Function: byteacmp(bytea, bytea) 
Function: () 
Function: () 
Function: () 

SQL


CREATE OPERATOR CLASS bytea_ops
    DEFAULT FOR TYPE bytea USING btree AS
    OPERATOR 1 <(bytea,bytea) ,
    OPERATOR 2 <=(bytea,bytea) ,
    OPERATOR 3 =(bytea,bytea) ,
    OPERATOR 4 >=(bytea,bytea) ,
    OPERATOR 5 >(bytea,bytea) ,
    FUNCTION 1 byteacmp(bytea,bytea);


ALTER OPERATOR CLASS pg_catalog.bytea_ops USING btree OWNER TO postgres;

See Also

List of operator classes