php-cassandra-binary icon indicating copy to clipboard operation
php-cassandra-binary copied to clipboard

Consistency Level LOCAL_ONE does not work.

Open fabianosim opened this issue 10 years ago • 0 comments

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!

fabianosim avatar Mar 01 '15 21:03 fabianosim