Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 18294 invoked from network); 17 Feb 2006 20:14:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 17 Feb 2006 20:14:48 -0000 Received: (qmail 96882 invoked by uid 500); 17 Feb 2006 20:14:47 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 96836 invoked by uid 500); 17 Feb 2006 20:14:47 -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 96827 invoked by uid 99); 17 Feb 2006 20:14:46 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=SPF_FAIL X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Feb 2006 12:14:46 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id 8A150DF for ; Fri, 17 Feb 2006 21:14:25 +0100 (CET) Message-ID: <381769892.1140207265563.JavaMail.jira@ajax.apache.org> Date: Fri, 17 Feb 2006 21:14:25 +0100 (CET) From: "Jeff Levitt (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Commented: (DERBY-402) INTERSECT/EXCEPT/UNION operators don't agree with documented behavior. In-Reply-To: <1077869268.1120003857390.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-402?page=comments#action_12366845 ] Jeff Levitt commented on DERBY-402: ----------------------------------- So I'm trying to understand the doc impact of this bug. Should the offending sentences just be removed? Thanks! > INTERSECT/EXCEPT/UNION operators don't agree with documented behavior. > ---------------------------------------------------------------------- > > Key: DERBY-402 > URL: http://issues.apache.org/jira/browse/DERBY-402 > Project: Derby > Type: Bug > Components: Documentation > Versions: 10.1.1.0, 10.0.2.2 > Reporter: A B > Fix For: 10.2.0.0 > > I noticed the following two differences between what the documentation (Reference Manual) says about UNION/INTERSECT/EXCEPT queries and what the actual Derby behavior is. I'm filing this issue as a single "bug" against Derby, but if it turns out later that this is really just a documentation issue, or that these are "improvements" instead of bugs, anyone should feel free to change the relevant fields in this issue... > 1) -- p. 63 of the Reference Manual (PDF version): "SelectExpression" -> "Naming columns" > First paragraph in this section includes the following: > When the SelectExpression appears in a UNION, INTERSECT, > or EXCEPT operator, the names from the first SelectExpression > are taken as the names for the columns in the result of > the operation. > But this doesn't appear to be true. Ex: > ij> select a from t1 union select b from t2; > 1 // This "1" should be "A", according to doc. > ----------- > 1 > 2 > If this behavior is intentional, then an ORDER BY clause on a UNION/INTERSECT/EXCEPT result set can only reference the result columns by position (ex. would have to use "order by 1" in the above query since "order by a" doesn't work (because the name of the result column isn't "a")). > Note that if both SelectExpressions have the same column name, then things work differently: > ij> select a from t1 union select b as a from t2; > A // Now it's "A" instead of "1". > ----------- > 1 > 2 > So what needs to be corrected here? The documentation or the code? > 2) -- p. 133 of the Reference Manual: "Dynamic Parameters" -> "Where dynamic parameters are allowed" > Number 16 says "a dynamic parameter is allowed to represent a column if it appears in a UNION, INTERSECT, or EXCEPT expression." But the two examples that it gives both fail: > ij> SELECT ? FROM t UNION SELECT 1 FROM t; > ERROR 42X34: There is a ? parameter in the select list. This is not allowed. > ij> VALUES 1 UNION VALUES ?; > ERROR 42X34: There is a ? parameter in the select list. This is not allowed. > I also tried preparing these statements using JDBC, but they failed there with the same error.. -- 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