Michael Dürig created OAK-1021:
----------------------------------

             Summary: Wrong value for Segment#MEDIUM_LIMIT
                 Key: OAK-1021
                 URL: https://issues.apache.org/jira/browse/OAK-1021
             Project: Jackrabbit Oak
          Issue Type: Bug
          Components: segmentmk
            Reporter: Michael Dürig


That value is defined as 

{code}
SMALL_LIMIT = 1 << 7;
MEDIUM_LIMIT = 1 << (16-2) + SMALL_LIMIT;
{code}

However it should most likely be

{code}
MEDIUM_LIMIT = (1 << 16-2) + SMALL_LIMIT;
{code}


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