[
https://issues.apache.org/jira/browse/CASSANDRA-13443?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Robert Stupp updated CASSANDRA-13443:
-------------------------------------
Resolution: Fixed
Status: Resolved (was: Patch Available)
Thank you!
Committed as
[0a438d59e65ee79bca7ffc44b8b958e62448e5c3|https://github.com/apache/cassandra/commit/0a438d59e65ee79bca7ffc44b8b958e62448e5c3]
to [cassandra-3.11|https://github.com/apache/cassandra/tree/cassandra-3.11]
> V5 protocol flags decoding broken
> ---------------------------------
>
> Key: CASSANDRA-13443
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13443
> Project: Cassandra
> Issue Type: Bug
> Reporter: Robert Stupp
> Assignee: Robert Stupp
> Priority: Minor
> Fix For: 3.11.0, 4.0
>
>
> Since native protocol version 5 we deserialize the flags in
> {{org.apache.cassandra.cql3.QueryOptions.Codec#decode}} as follows:
> {code}
> EnumSet<Flag> flags =
> Flag.deserialize(version.isGreaterOrEqualTo(ProtocolVersion.V5)
> ?
> (int)body.readUnsignedInt()
> : (int)body.readByte());
> {code}
> This works until the highest bit (0x80) is not used. {{readByte}} must be
> changed to {{readUnsignedByte}}.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)