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

Clob.length() doesn't detect a closed underlying connection in a consistent way

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 10.3.2.1, 10.4.1.3, 10.5.1.1
    • 10.4.2.0, 10.5.1.1
    • JDBC, Network Client
    • None
    • Client-driver

    Description

      Depending on the state of the Clob, the method length gives two different SQL states when the underlying connection has been closed.
      According to BlobClob4BlobTest.testClobAfterConnectionClose, it should throw 08003 (no current connection), but it might also throw XJ215 (invalid lob).

      I think this is caused indirectly by the following method in Lob:
      long sqlLength() throws SqlException
      {
      if (lengthObtained_) return sqlLength_;

      if (isLocator())

      { sqlLength_ = getLocatorLength(); lengthObtained_ = true; }

      else if (willBeLayerBStreamed())

      { throw new SqlException(agent_.logWriter_, LOB_OBJECT_LENGTH_UNKNOWN_YET); }

      else

      { materializeStream(); // Will set sqlLength_ }

      return sqlLength_;
      }

      In this method, getLocatorLength will check for a closed connection (somewhere down in prepareCallX i believe), whereas the cached length is returned if it has already been determined. Clob.length does not check for a closed connection.
      There are multiple fixes, but I think a proper investigation should be carried out before a solution is chosen.

      Attachments

        1. ClosedClobTest.java
          2 kB
          Kristian Waagan
        2. ClosedClobTest.java
          4 kB
          Kristian Waagan

        Issue Links

          Activity

            People

              espinha Tiago R. Espinha
              kristwaa Kristian Waagan
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: