Uploaded image for project: 'Jackrabbit Oak'
  1. Jackrabbit Oak
  2. OAK-1021

Wrong value for Segment#MEDIUM_LIMIT

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 0.10
    • segmentmk
    • None

    Description

      That value is defined as

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

      However it should most likely be

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

      Attachments

        Activity

          People

            mduerig Michael Dürig
            mduerig Michael Dürig
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: