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 dj...@apache.org on 2007/05/21 20:21:32 UTC

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

Author: djd
Date: Mon May 21 11:21:31 2007
New Revision: 540221

URL: http://svn.apache.org/viewvc?view=rev&rev=540221
Log:
Fix typo in comment update for SQLChar that said SQLChar represented a VARCHAR instead of a CHAR.

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?view=diff&rev=540221&r1=540220&r2=540221
==============================================================================
--- 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 Mon May 21 11:21:31 2007
@@ -73,7 +73,9 @@
 import java.util.Calendar;
 
 /**
- * SQLChar represents a VARCHAR value with UCS_BASIC collation.
+ * SQLChar represents a CHAR value with UCS_BASIC collation.
+ * SQLChar may be used directly by any code when it is guaranteed
+ * that the required collation is UCS_BASIC, e.g. system columns.
  */
 public class SQLChar
 	extends DataType implements StringDataValue, StreamStorable