Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 35368 invoked from network); 8 Jul 2010 19:23:30 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 8 Jul 2010 19:23:30 -0000 Received: (qmail 2784 invoked by uid 500); 8 Jul 2010 19:23:30 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 2741 invoked by uid 500); 8 Jul 2010 19:23:29 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 2733 invoked by uid 99); 8 Jul 2010 19:23:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 19:23:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jul 2010 19:23:26 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E0DE123889B3; Thu, 8 Jul 2010 19:22:03 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r961892 - /db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLChar.java Date: Thu, 08 Jul 2010 19:22:03 -0000 To: derby-commits@db.apache.org From: kahatlen@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100708192203.E0DE123889B3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kahatlen Date: Thu Jul 8 19:22:03 2010 New Revision: 961892 URL: http://svn.apache.org/viewvc?rev=961892&view=rev Log: DERBY-4052: SQLChar.copyState() doesn't copy localeFinder Patch contributed by Yun Lee . Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLChar.java Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLChar.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLChar.java?rev=961892&r1=961891&r2=961892&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLChar.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLChar.java Thu Jul 8 19:22:03 2010 @@ -3020,7 +3020,7 @@ readingLoop: this.cKey = other.cKey; this.stream = other.stream; this._clobValue = other._clobValue; - this.localeFinder = localeFinder; + this.localeFinder = other.localeFinder; } /**