Return-Path: X-Original-To: apmail-db-derby-dev-archive@www.apache.org Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 62EADF6EE for ; Fri, 29 Mar 2013 21:57:15 +0000 (UTC) Received: (qmail 9090 invoked by uid 500); 29 Mar 2013 21:57:15 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 9066 invoked by uid 500); 29 Mar 2013 21:57:15 -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 9057 invoked by uid 99); 29 Mar 2013 21:57:15 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Mar 2013 21:57:15 +0000 Date: Fri, 29 Mar 2013 21:57:15 +0000 (UTC) From: "Mike Matrigali (JIRA)" To: derby-dev@db.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (DERBY-6131) select from view with "upper" and "in" does not work MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/DERBY-6131?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mike Matrigali updated DERBY-6131: ---------------------------------- Affects Version/s: 10.7.1.4 10.6.2.3 10.5.3.2 10.4.2.1 10.3.3.1 10.2.2.1 10.1.3.3 I checked the head of all old branches back to 10.1 and get same crash, so this issue is in the original code and not a regression. It may be architectural in nature, and not easy to fix. > select from view with "upper" and "in" does not work > ---------------------------------------------------- > > Key: DERBY-6131 > URL: https://issues.apache.org/jira/browse/DERBY-6131 > Project: Derby > Issue Type: Bug > Components: SQL > Affects Versions: 10.1.3.3, 10.2.2.1, 10.3.3.1, 10.4.2.1, 10.5.3.2, 10.6.2.3, 10.7.1.4, 10.9.1.0, 10.8.3.0 > Environment: windows > Reporter: Rong Qu > > the issue can be reproduced > 1. create table myTbl1 (name varchar(1000)); > 2. create table myTbl2 (name varchar(1000)); > 3. create view myView (name) as select t1.name from myTbl1 t1 union all select t2.name from myTbl2 t2; > 4. select name from myView where upper(name) in ('AA', 'BB'); > #4 failed with "org.apache.derby.impl.sql.compile.SimpleStringOperatorNode incompatible with org.apache.derby.impl.sql.compile.ColumnReference: java.lang.ClassCastException" > If the view is created as "create myView (name) as select t1.name from myTbl1 t1", the query worked fine. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira