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