Properties

Name: bytea_ops 
OID: 2223 
Owner: postgres 
Default:  
For type: bytea 
Access method: hash 
Storage:  
Comment:  
Operator: 1 =(bytea,bytea) 
Operator:  
Operator:  
Operator:  
Function: hashvarlena(internal) 
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