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