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

Blob.getBinaryStream(long,long) is off by one for the pos+len check

    XMLWordPrintableJSON

Details

    • Normal

    Description

      If you have a BLOB of length 20, and call blob.getBinaryStream(11,10), it will give you an error:

      java.sql.SQLException: Sum of position('11') and length('10') is greater than the size of the LOB.

      This is following word for word an error in the JDBC Javadoc:

      SQLException - if pos is less than 1 or if pos is greater than the number of bytes in the Blob or if pos + length is greater than the number of bytes in the Blob

      So it's checking 11 + 10 > 20, but it should check 11 + 10 > 21 (pos + len > blob.length() + 1) to allow reading the last byte.

      The Javadoc for Clob.getCharacterStream(long,long) has similar wording so it may have the same issue.

      Likewise, the client driver may have the same issue – I haven't yet checked.

      Attachments

        1. derby-4060-1a-sub_stream_fix.diff
          15 kB
          Kristian Waagan
        2. derby-4060-1a-sub_stream_fix.stat
          0.5 kB
          Kristian Waagan
        3. derby-4060-1b-sub_stream_fix.diff
          15 kB
          Kristian Waagan
        4. derby-4060-2a-doc_changes.diff
          4 kB
          Kristian Waagan

        Activity

          People

            kristwaa Kristian Waagan
            trejkaz Trejkaz
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: