Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 90393 invoked from network); 2 Dec 2004 16:44:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 2 Dec 2004 16:44:53 -0000 Received: (qmail 24523 invoked by uid 500); 2 Dec 2004 16:44:41 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 24469 invoked by uid 500); 2 Dec 2004 16:44:41 -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: "Derby Development" Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 24419 invoked by uid 99); 2 Dec 2004 16:44:40 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from exchange.sun.com (HELO exchange.sun.com) (192.18.33.10) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 02 Dec 2004 08:44:39 -0800 Received: (qmail 17367 invoked from network); 2 Dec 2004 16:44:37 -0000 Received: from localhost (HELO nagoya) (127.0.0.1) by nagoya.betaversion.org with SMTP; 2 Dec 2004 16:44:37 -0000 Message-ID: <954795688.1102005877862.JavaMail.apache@nagoya> Date: Thu, 2 Dec 2004 08:44:37 -0800 (PST) From: "Daniel John Debrunner (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Commented: (DERBY-13) Quoted names with embedded period mishandled in from list In-Reply-To: <2054235333.1096483952122.JavaMail.apache@nagoya> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N [ http://nagoya.apache.org/jira/browse/DERBY-13?page=comments#action_56109 ] Daniel John Debrunner commented on DERBY-13: -------------------------------------------- Rather than inventing a new way, the exposed table name should be a TableName rather than a simple String. (org.apache.derby.impl.sql.compile.TableName). Some of the query nodes already have a method TableName getExposedTableName(), all instances and uses of String getExposedName() should be changed to TableName getExposedTableName(). The change is probably a little more involved than that, but that should be the general idea. > Quoted names with embedded period mishandled in from list > --------------------------------------------------------- > > Key: DERBY-13 > URL: http://nagoya.apache.org/jira/browse/DERBY-13 > Project: Derby > Type: Bug > Components: SQL > Versions: 10.0.2.0 > Reporter: Ramandeep Kaur > Priority: Minor > Attachments: Derby-13.patch > > Opening this bug on behalf of Satheesh Bandaram > --------------------------------------------------------- > The compiler mishandles quoted names with embedded periods when > checking uniqueness of table names in the from list of a > SELECT. Consider the following SQL: > create table "S1.T1" (id int not null primary key, d1 int); > create schema s1; > create table s1.t1 (id int not null primary key, d2 int); > select * from s1.t1, "S1.T1" where s1.t1.id = "S1.T1".id; > Derby throws an error on the final SELECT statement: > "ERROR 42X09: The table or alias name 'S1.T1' is used more than > once in the FROM list". However s1.t1 and "S1.T1" are different > tables. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://nagoya.apache.org/jira/secure/Administrators.jspa - If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira