Hi Yun,
I have added you as a contributor to the Derby project. This should give
you the permission you need. Here's a good primer on getting started as
a Derby developer: http://db.apache.org/derby/derby_comm.html I don't
think that Apache has an ICLA on file for you yet. The contributor
checklist points you at the instructions for filing an ICLA so that
Apache can accept your contributions:
http://wiki.apache.org/db-derby/DerbyContributorChecklist
Welcome to the Derby developer group!
-Rick
Yun Lee (JIRA) wrote:
[
https://issues.apache.org/jira/browse/DERBY-3991?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Yun Lee updated DERBY-3991:
---------------------------
Attachment: derby-3991-2a.diff
Hi, all. I'm a prospective student for GSOC, Yun Lee. I have posted a patch for this issue, wish for your comments.
At this moment, I'm in the user group, without the permission to assign this
issue to myself. How to apply for the developer group, please?
Thanks!
Clob.truncate(0) throws exception
---------------------------------
Key: DERBY-3991
URL: https://issues.apache.org/jira/browse/DERBY-3991
Project: Derby
Issue Type: Bug
Components: JDBC
Affects Versions: 10.3.3.1, 10.4.2.1, 10.5.0.0
Reporter: Kristian Waagan
Priority: Minor
Attachments: derby-3991-1a-ClobTruncateZeroTest.diff, derby-3991-2a.diff
Truncating a Clob to zero length is allowed according to the JDBC
specification, which says the following about the len argument (in the @throws
tag):
"SQLException - if there is an error accessing the CLOB value or if len is less than
0 "
Derby throws an exception if zero is passed to truncate.
A quick inspection of the code suggests that truncating a Clob to the empty
string is easy to support.