You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ka...@apache.org on 2010/07/08 21:22:03 UTC

svn commit: r961892 - /db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLChar.java

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 <yu...@gmail.com>.

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;
     }
 
     /**