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