Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 23514 invoked from network); 11 Apr 2011 19:22:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 11 Apr 2011 19:22:44 -0000 Received: (qmail 21998 invoked by uid 500); 11 Apr 2011 19:22:44 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 21980 invoked by uid 500); 11 Apr 2011 19:22:44 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 21973 invoked by uid 99); 11 Apr 2011 19:22:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Apr 2011 19:22:43 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Apr 2011 19:22:42 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id E66CB9D8EE for ; Mon, 11 Apr 2011 19:22:05 +0000 (UTC) Date: Mon, 11 Apr 2011 19:22:05 +0000 (UTC) From: "Rick Hillegas (JIRA)" To: derby-dev@db.apache.org Message-ID: <385112827.50184.1302549725940.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (DERBY-4544) Referencing streaming CLOBs in (some) generated column clauses fails MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/DERBY-4544?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13018521#comment-13018521 ] Rick Hillegas commented on DERBY-4544: -------------------------------------- Ported 1091169 from trunk to 10.8 branch at subversion revision 1091172. > Referencing streaming CLOBs in (some) generated column clauses fails > -------------------------------------------------------------------- > > Key: DERBY-4544 > URL: https://issues.apache.org/jira/browse/DERBY-4544 > Project: Derby > Issue Type: Bug > Components: SQL > Affects Versions: 10.5.3.0, 10.6.1.0 > Reporter: Kristian Waagan > Assignee: Kristian Waagan > Labels: CLOB, derby_triage10_8 > Attachments: Test_4544.java, Test_4544.java, Test_4544.java, derby-4544-01-ab-shortCircuitLengthOptimization.diff, derby-4544-01-ac-shortCircuitLengthOptimization.diff > > > Referencing a CLOB represented as a stream in generated columns can lead to data corruption or that the query fails. > For instance, with 10.5: > create table t (id int, myclob clob, clen generated always as (length(myclob))); > # Insert CLOB using the streaming APIs (setCharacterStream). > The exception 'java.lang.ClassCastException: org.apache.derby.iapi.types.ReaderToUTF8Stream cannot be cast to org.apache.derby.iapi.types.Resetable' > On trunk the same query results in data corruption, and this isn't detected before the value is read back from store. > Workaround: > Don't use the streaming APIs when using CLOBs in generated columns. This increases the memory footprint, and may not feasible for large CLOBs. > FYI, BLOB deals with this by materializing the value, which effectively equals to using the workaround mentioned above. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira