[
https://issues.apache.org/jira/browse/CASSANDRA-3146?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
paul cannon updated CASSANDRA-3146:
-----------------------------------
Attachment: 3146.patch.txt
Apply changes described. This patch applies on top of the one from
CASSANDRA-3145.
The patch is attached here for posterity, but the changes can probably be more
meaningfully explored on github:
https://github.com/thepaul/cassandra/compare/0c665b39a7dac49141e6b856c33d5d0e05a9343b...35b6d08b94fd24c837a73b564216b7a1bc65bed2
> Minor changes to IntervalTree
> -----------------------------
>
> Key: CASSANDRA-3146
> URL: https://issues.apache.org/jira/browse/CASSANDRA-3146
> Project: Cassandra
> Issue Type: Improvement
> Components: Core
> Reporter: paul cannon
> Assignee: paul cannon
> Priority: Minor
> Fix For: 1.0
>
> Attachments: 3146.patch.txt
>
>
> I have a few minor changes to IntervalTree that I feel improve its
> performance and readability. None of this should have an effect on
> correctness.
> Details:
> * rename IntervalNode members v_left/v_right to
> intersects_left/intersects_right, to avoid confusion with the members
> similarly named "left" and "right"
> * remove the unused IntervalNode.interval member
> * don't calculate the list of intersecting intervals twice in IntervalNode
> constructor
> * fix comment in IntervalNode constructor: s/i.min/i.max/
> * remove unused java.util.Collections import from IntervalTree.java
> * remove unused code path (checking twice for null == node) in
> IntervalTree.searchInternal()
> * genericize Interval parameter type to IntervalTree.search()
> There are still a lot of unchecked operations around the Interval generic
> stuff, and the OCD guy inside me wants it to be competely type-safe, but in
> real life this ought to be fine like it is. Plus the static Orderings in
> Interval.java would need to be made instance variables and that would just be
> annoying.
> Ok, so, go ahead and ignore any of this if appropriate. It just helped me
> feel better with the code.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira