[
https://issues.apache.org/jira/browse/CASSANDRA-3708?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13397630#comment-13397630
]
Daniel Doubleday commented on CASSANDRA-3708:
---------------------------------------------
Dont want to reopen again because its not a bug but maybe an improvement ...
It seems that searchInternal is always descending into the tree even when there
are no chances to find a result anymore.
Unless I missing something a break early test could help (unit tests pass and
hit the break early test):
{code}
void searchInternal(Interval<C, D> searchInterval, List<D> results)
{
if (comparePoints(searchInterval.max, low) < 0 ||
comparePoints(searchInterval.min, high) > 0) return;
{code}
> Support "composite prefix" tombstones
> -------------------------------------
>
> Key: CASSANDRA-3708
> URL: https://issues.apache.org/jira/browse/CASSANDRA-3708
> Project: Cassandra
> Issue Type: Sub-task
> Reporter: Jonathan Ellis
> Assignee: Sylvain Lebresne
> Fix For: 1.2
>
>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira