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