Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 10093 invoked from network); 21 Apr 2009 13:52:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 21 Apr 2009 13:52:09 -0000 Received: (qmail 49042 invoked by uid 500); 21 Apr 2009 13:52:08 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 48990 invoked by uid 500); 21 Apr 2009 13:52:08 -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 48982 invoked by uid 99); 21 Apr 2009 13:52:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Apr 2009 13:52:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Apr 2009 13:52:07 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id A615A234C04B for ; Tue, 21 Apr 2009 06:51:47 -0700 (PDT) Message-ID: <1322072649.1240321907679.JavaMail.jira@brutus> Date: Tue, 21 Apr 2009 06:51:47 -0700 (PDT) From: "Knut Anders Hatlen (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Updated: (DERBY-4001) Sequence comparison with "ALL" does not yield correct results In-Reply-To: <1003142760.1231139864621.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DERBY-4001?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Knut Anders Hatlen updated DERBY-4001: -------------------------------------- Derby Info: [Patch Available] > Sequence comparison with "ALL" does not yield correct results > ------------------------------------------------------------- > > Key: DERBY-4001 > URL: https://issues.apache.org/jira/browse/DERBY-4001 > Project: Derby > Issue Type: Bug > Components: SQL > Affects Versions: 10.3.2.1 > Environment: Windows > Reporter: Venkateswaran Iyer > Assignee: Knut Anders Hatlen > Priority: Minor > Attachments: d4001-1a-test.diff, d4001-2a-code.diff, dontFlatten.diff > > > A query involving "< ALL" does not yield the right results for decimal datatype. "< ANY" works, though. > To reproduce the issue: > % create table t1(col1 decimal(10,5)); > % insert into t1 values (-21483.64800); > % insert into t1 values (74837.00000); > % select col1 from t1 where col1 < ALL (select 0.0 from t1); > The above yields no results whereas it should return the first row. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.