belliottsmith commented on code in PR #4321:
URL: https://github.com/apache/cassandra/pull/4321#discussion_r2285203062
##########
src/java/org/apache/cassandra/service/accord/txn/TxnUpdate.java:
##########
@@ -292,6 +294,16 @@ public TxnUpdate deserialize(TableMetadatasAndKeys
tablesAndKeys, DataInputPlus
return new TxnUpdate(tablesAndKeys.tables, keys, fragments, new
SerializedTxnCondition(condition), consistencyLevel, preserveTimestamps ?
PreserveTimestamp.yes : PreserveTimestamp.no);
}
+ @Override
+ public void skip(TableMetadatasAndKeys tablesAndKeys, DataInputPlus
in, Version version) throws IOException
+ {
+ in.readByte();
+ tablesAndKeys.skipKeys(in);
+ skipWithVIntLength(in);
+ skipArray(in, ByteBufferUtil.byteBufferSerializer);
+ deserializeNullable(in, consistencyLevelSerializer);
Review Comment:
I just ignored this one only because deserialization is so cheap
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]