php-cassandra-binary
php-cassandra-binary copied to clipboard
Consistency Level LOCAL_ONE does not work.
I noticed that LOCAL_ONE consistency level does not work due to an error in ConsistencyEnum.php. The correct value for it is:
const CONSISTENCY_LOCAL_ONE = 0xA;
the current value is 0x0010, and this leads to this cassandra error message: "Protocol error: Unknown code 16 for a consistency level"
Please, fix this. Thank you!