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 ma...@apache.org on 2007/04/07 01:11:06 UTC

svn commit: r526313 - /db/derby/code/trunk/java/engine/org/apache/derby/catalog/types/TypeDescriptorImpl.java

Author: mamta
Date: Fri Apr  6 16:11:06 2007
New Revision: 526313

URL: http://svn.apache.org/viewvc?view=rev&rev=526313
Log:
Correction from a previous patch in TypeDescriptorImpl. The collation derivation should be initialized to none. It will be the job of the Derby code to initialize it correctly to implicit where ever it applies.

Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/catalog/types/TypeDescriptorImpl.java

Modified: db/derby/code/trunk/java/engine/org/apache/derby/catalog/types/TypeDescriptorImpl.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/catalog/types/TypeDescriptorImpl.java?view=diff&rev=526313&r1=526312&r2=526313
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/catalog/types/TypeDescriptorImpl.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/catalog/types/TypeDescriptorImpl.java Fri Apr  6 16:11:06 2007
@@ -57,7 +57,7 @@
 	/** @see TypeDescriptor#getCollationType() */
 	private int						collationType;
 	/** @see TypeDescriptor#getCollationDerivation() */
-	private int					collationDerivation = StringDataValue.COLLATION_DERIVATION_IMPLICIT;
+	private int					collationDerivation = StringDataValue.COLLATION_DERIVATION_NONE;
 
 	/**
 	 * Public niladic constructor. Needed for Formatable interface to work.