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 2DA109185 for ; Fri, 3 Feb 2012 15:28:16 +0000 (UTC) Received: (qmail 19504 invoked by uid 500); 3 Feb 2012 15:28:16 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 19384 invoked by uid 500); 3 Feb 2012 15:28: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 19377 invoked by uid 99); 3 Feb 2012 15:28:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Feb 2012 15:28:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Feb 2012 15:28:13 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id D4D1D18B623 for ; Fri, 3 Feb 2012 15:27:53 +0000 (UTC) Date: Fri, 3 Feb 2012 15:27:53 +0000 (UTC) From: "Dag H. Wanvik (Commented) (JIRA)" To: derby-dev@db.apache.org Message-ID: <1356099080.7645.1328282873873.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <705673341.66753.1327326281415.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (DERBY-5584) Select statement with subqueries with group by and count distinct statements returns wrong number of results 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-5584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13199769#comment-13199769 ] Dag H. Wanvik commented on DERBY-5584: -------------------------------------- I tested it on this data set with a similar nested query and it seems to work ok: SELECT * FROM (SELECT ps1.group_ref, ps1.profile_id FROM test_5 ps1 ORDER BY profile_id) a, (SELECT ps2.group_ref, ps2.profile_id FROM test_6 ps2 ORDER BY PROFILE_ID) b ; GROUP_REF |PROFILE_ID |GROUP_REF |PROFILE_ID ----------------------------------------------- 10000 |1 |10000 |1 10000 |1 |10000 |1 10000 |1 |10000 |2 10000 |1 |10000 |2 10000 |1 |10000 |2 10000 |1 |10000 |3 etc. > Select statement with subqueries with group by and count distinct statements returns wrong number of results > ------------------------------------------------------------------------------------------------------------ > > Key: DERBY-5584 > URL: https://issues.apache.org/jira/browse/DERBY-5584 > Project: Derby > Issue Type: Bug > Components: Network Server > Affects Versions: 10.7.1.1 > Environment: Output from sysinfo > java.specification.name: Java Platform API Specification > java.specification.version: 1.6 > java.runtime.version: 1.6.0_20-b02 > --------- Derby Information -------- > JRE - JDBC: Java SE 6 - JDBC 4.0 > [/home/piotrz/Desktop/db-derby-10.7.1.1-bin/lib/derby.jar] 10.7.1.1 - (1040133) > [/home/piotrz/Desktop/db-derby-10.7.1.1-bin/lib/derbytools.jar] 10.7.1.1 - (1040133) > [/home/piotrz/Desktop/db-derby-10.7.1.1-bin/lib/derbynet.jar] 10.7.1.1 - (1040133) > [/home/piotrz/Desktop/db-derby-10.7.1.1-bin/lib/derbyclient.jar] 10.7.1.1 - (1040133) > ------------------------------------------------------ > ----------------- Locale Information ----------------- > Current Locale : [English/United States [en_US]] > Found support for locale: [cs] > version: 10.7.1.1 - (1040133) > Found support for locale: [de_DE] > version: 10.7.1.1 - (1040133) > Found support for locale: [es] > version: 10.7.1.1 - (1040133) > Found support for locale: [fr] > version: 10.7.1.1 - (1040133) > Found support for locale: [hu] > version: 10.7.1.1 - (1040133) > Found support for locale: [it] > version: 10.7.1.1 - (1040133) > Found support for locale: [ja_JP] > version: 10.7.1.1 - (1040133) > Found support for locale: [ko_KR] > version: 10.7.1.1 - (1040133) > Found support for locale: [pl] > version: 10.7.1.1 - (1040133) > Found support for locale: [pt_BR] > version: 10.7.1.1 - (1040133) > Found support for locale: [ru] > version: 10.7.1.1 - (1040133) > Found support for locale: [zh_CN] > version: 10.7.1.1 - (1040133) > Found support for locale: [zh_TW] > version: 10.7.1.1 - (1040133) > Reporter: Piotr Zgadzaj > Assignee: Bryan Pendleton > Attachments: patch1.txt, query.log, tests.out, tests.sql, try1.txt > > > Steps to reproduce: > 1. Create database, connect to database with any JDBC client > 2. create two tables: > CREATE TABLE TEST_5 ( > profile_id INTEGER NOT NULL, > group_ref INTEGER NOT NULL, > matched_count INTEGER NOT NULL > ); > CREATE TABLE TEST_6 ( > profile_id INTEGER NOT NULL, > group_ref INTEGER NOT NULL, > matched_count INTEGER NOT NULL > ); > 3. Insert two records for each table: > insert into test_5 values (1, 10000,1); > insert into test_5 values (2, 10000, 2); > insert into test_6 values (1, 10000,1); > insert into test_6 values (2, 10000, 2); > 4. Run following statement > SELECT * > FROM > (SELECT ps1.group_ref, > COUNT(DISTINCT ps1.matched_count) AS matched_count > FROM test_5 ps1 > GROUP BY ps1.group_ref, > ps1.profile_id > ) a, > (SELECT ps2.group_ref, > COUNT( DISTINCT ps2.matched_count) AS matched_count > FROM test_6 ps2 > GROUP BY ps2.group_ref, > ps2.profile_id > ) b > As a result I've got 3 records instead of 4 - at least Oracle 10g > returns 4 records for this statement. Maybe i'm doing something wrong. > Do you have any suggestions / possible workarounds for this problem -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira