adelapena commented on code in PR #1891:
URL: https://github.com/apache/cassandra/pull/1891#discussion_r1134112563
##########
src/java/org/apache/cassandra/db/RangeTombstoneList.java:
##########
@@ -146,11 +153,16 @@ public void add(RangeTombstone tombstone)
* This method will be faster if the new tombstone sort after all the
currently existing ones (this is a common use case),
* but it doesn't assume it.
*/
- public void add(ClusteringBound<?> start, ClusteringBound<?> end, long
markedAt, int delTime)
+ public void add(ClusteringBound<?> start, ClusteringBound<?> end, long
markedAt, long delTime)
+ {
+ add(start, end, markedAt, CassandraUInt.fromLong(delTime));
+ }
+
+ public void add(ClusteringBound<?> start, ClusteringBound<?> end, long
markedAt, int delTimeUnsignedInteger)
Review Comment:
Can be `private`, helping to hide the uint signatures to the rest of the
codebase.
--
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]