Uploaded image for project: 'Derby'
  1. Derby
  2. DERBY-4685

Dead/unreachable code in OpenConglomerate.lockPositionForWrite()

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 10.7.1.1
    • 10.7.1.1
    • Store
    • None

    Description

      OpenConglomerate.lockPositionForWrite() contains this code twice:

      if (!waitForLock)

      { // throw lock timeout error. throw StandardException.newException(SQLState.LOCK_TIMEOUT); }

      The second occurrence of this code can never end up throwing an exception, since waitForLock is guaranteed to be true there because of the identical check a couple of lines above. (Judging by the similar method lockPositionForRead(), it is probably the first check that should be removed, so that the latch on the page is released before the exception is thrown.)

      Also, the method is always called with forInsert==false, so the forInsert parameter can be removed. (I also suspect that the method doesn't work correctly if ever used in an insert operation, since it calls latchPage(RowPosition) which will unlatch the page if the row isn't found on the page, and I assume that a row that is about to be inserted does not exist yet.)

      Attachments

        1. d4685-2.diff
          3 kB
          Knut Anders Hatlen
        2. d4685.diff
          0.8 kB
          Knut Anders Hatlen

        Activity

          People

            knutanders Knut Anders Hatlen
            knutanders Knut Anders Hatlen
            Votes:
            1 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: