Name: | bpchar_ops |
OID: | 427 |
Owner: | postgres |
Default: | |
For type: | bpchar |
Access method: | hash |
Storage: | |
Comment: | |
Operator: | 1 =(bpchar,bpchar) |
Operator: | |
Operator: | |
Operator: | |
Function: | hashbpchar(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