Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 25601 invoked from network); 21 May 2007 18:21:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 May 2007 18:21:54 -0000 Received: (qmail 45700 invoked by uid 500); 21 May 2007 18:22:00 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 45676 invoked by uid 500); 21 May 2007 18:22:00 -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 45638 invoked by uid 99); 21 May 2007 18:22:00 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 May 2007 11:22:00 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 May 2007 11:21:53 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id EDF9E1A981A; Mon, 21 May 2007 11:21:32 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r540221 - /db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/SQLChar.java Date: Mon, 21 May 2007 18:21:32 -0000 To: derby-commits@db.apache.org From: djd@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070521182132.EDF9E1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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