[ 
https://issues.apache.org/jira/browse/CASSANDRA-4804?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Ellis updated CASSANDRA-4804:
--------------------------------------

             Reviewer: dbrosius
    Affects Version/s:     (was: 1.1.6)
                           (was: 1.2.0 beta 1)
        Fix Version/s:     (was: 1.1.6)
                           (was: 1.2.0 beta 1)
                       1.2.0 beta 2
                       1.1.7
             Assignee: Nikolay

Can you review, Dave?
                
> Wrong assumption for KeyRange about range.end_token in get_range_slices(). 
> ---------------------------------------------------------------------------
>
>                 Key: CASSANDRA-4804
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-4804
>             Project: Cassandra
>          Issue Type: Bug
>          Components: API
>            Reporter: Nikolay
>            Assignee: Nikolay
>            Priority: Minor
>             Fix For: 1.1.7, 1.2.0 beta 2
>
>         Attachments: cassa.1.1.6.diff.txt, cassa.1.2.x.diff.txt
>
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> In get_range_slices() there is parameter KeyRange range.
> There you can pass start_key - end_key, start_token - end_token, or start_key 
> - end_token.
> This is described in the documentation.
> in thrift/ThriftValidation.java there is validation function 
> validateKeyRange() (line:489) that validates correctly the KeyRange, 
> including the case start_key - end_token.
> However in thrift/CassandraServer.java in function get_range_slices() on 
> line: 686 wrong assumption is made:
>    if (range.start_key == null)
>    {
>       ... // populate tokens
>    }
>    else
>    {
>       bounds = new Bounds<RowPosition>(RowPosition.forKey(range.start_key, 
> p), RowPosition.forKey(range.end_key, p));
>    }
> This means if there is start key, no end token is checked.
> The opposite - null is "inserted" as end_key.
> Solution:
> same file - thrift/CassandraServer.java on next function - get_paged_slice(), 
> on line:741 same code is written correctly
>    if (range.start_key == null)
>    {
>       ... // populate tokens
>    }
>    else
>    {
>       RowPosition end = range.end_key == null ? 
> p.getTokenFactory().fromString(range.end_token).maxKeyBound(p)
>                            : RowPosition.forKey(range.end_key, p);
>       bounds = new Bounds<RowPosition>(RowPosition.forKey(range.start_key, 
> p), end);
>    }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to