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