From derby-dev-return-19780-apmail-db-derby-dev-archive=db.apache.org@db.apache.org Mon May 01 19:36:20 2006 Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 94119 invoked from network); 1 May 2006 19:36:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 1 May 2006 19:36:19 -0000 Received: (qmail 84343 invoked by uid 500); 1 May 2006 19:36:18 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 84302 invoked by uid 500); 1 May 2006 19:36:18 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 84292 invoked by uid 99); 1 May 2006 19:36:17 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 May 2006 12:36:17 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 May 2006 12:36:17 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 1BDE27142A1 for ; Mon, 1 May 2006 19:35:47 +0000 (GMT) Message-ID: <14583427.1146512147111.JavaMail.jira@brutus> Date: Mon, 1 May 2006 19:35:47 +0000 (GMT+00:00) From: "Mike Matrigali (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Updated: (DERBY-437) SYSCS_UTIL.SYSCS_COMPRESS_TABLE does not work on tables that are created with delimited identifier names. In-Reply-To: <447056309.1120255918436.JavaMail.jira@ajax.apache.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/DERBY-437?page=all ] Mike Matrigali updated DERBY-437: --------------------------------- Fix Version: 10.1.3.0 10.1.2.4 backported this fix from trunk into 10.1 line: m101_142:135>svn commit Sending java\engine\org\apache\derby\catalog\SystemProcedures.java Sending java\testing\org\apache\derbyTesting\functionTests\master\compres sTable.out Sending java\testing\org\apache\derbyTesting\functionTests\tests\lang\com pressTable.sql Sending java\testing\org\apache\derbyTesting\functionTests\tests\store\st reamingColumn.java Transmitting file data .... Committed revision 398665. > SYSCS_UTIL.SYSCS_COMPRESS_TABLE does not work on tables that are created with delimited identifier names. > ----------------------------------------------------------------------------------------------------------- > > Key: DERBY-437 > URL: http://issues.apache.org/jira/browse/DERBY-437 > Project: Derby > Type: Bug > Components: SQL > Versions: 10.0.2.2 > Reporter: Suresh Thalamati > Assignee: Suresh Thalamati > Fix For: 10.2.0.0, 10.1.3.0, 10.1.2.4 > Attachments: derby437.diff > > COMPRESS_TABLE procedure forms SQL statement undeneath, so if the user does not pass quoted names , it is not working with delimited table/schema names.. > eg: create table "Order"(a int ) ; > ij> call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP' , 'Order' ,1) ; > ERROR 38000: The exception 'SQL Exception: Syntax error: Encountered "Order" at > line 1, column 17.' was thrown while evaluating an expression. > ERROR 42X01: Syntax error: Encountered "Order" at line 1, column 17. > With quoted names it works fine. > ij> call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP' , '"Order"' ,1) ; > 0 rows inserted/updated/deleted > If it is expected that user to pass quoted names for SYSCS_UTIL.SYSCS_COMPRESS_TABLE, then it is ok. > But doc is not clear: > COMPRESS_TABLE doc in the reference manual: > TABLENAME > An input argument of type VARCHAR(128) that specifies the table name > of the table. The string must exactly match the case of the table > name, and the argument of "Fred" will be passed to SQL as the > delimited identifier 'Fred'. Passing a null will result in an error. > So either doc has to be fixed or code needs to be fixed to handle quoted names for compress table. > I think the code has to fixed to be consistent with other system procedures. . i.e > If you created a schema, table or column name as a non-delimited identifier, you must pass the name in all upper case. If you created a schema, table or column name as a delimited identifier, you must pass the name in the same case as it was created. > For example: > create table "Order"(a int ) ; > call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP' , 'Order' ,1) ; > create table t1( a int ) > call SYSCS_UTIL.SYSCS_COMPRESS_TABLE('APP' , 'T1' ,1) ; -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira