michaelsembwever commented on code in PR #4532:
URL: https://github.com/apache/cassandra/pull/4532#discussion_r2627449856


##########
src/java/org/apache/cassandra/cql3/functions/types/TypeCodec.java:
##########
@@ -1876,6 +1870,13 @@ private TimeCodec()
             super(DataType.time());
         }
 
+        @Override
+        public int serializedSize()
+        {
+            // matching behavior of TimeType, which is not declared as fixed 
length
+            return VARIABLE_LENGTH;
+        }
+

Review Comment:
   nit: better not to move the method's position…



-- 
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]

Reply via email to