Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 7059 invoked from network); 1 Jul 2006 14:02:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 1 Jul 2006 14:02:13 -0000 Received: (qmail 17757 invoked by uid 500); 1 Jul 2006 14:02:12 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 17723 invoked by uid 500); 1 Jul 2006 14:02:12 -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 17711 invoked by uid 99); 1 Jul 2006 14:02:12 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Jul 2006 07:02:12 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Jul 2006 07:02:11 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 2843A7141F9 for ; Sat, 1 Jul 2006 14:00:31 +0000 (GMT) Message-ID: <13363550.1151762431162.JavaMail.jira@brutus> Date: Sat, 1 Jul 2006 14:00:31 +0000 (GMT+00:00) From: "A B (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Updated: (DERBY-781) Materialize union subqueries in select list where possible to avoid creating invariant resultsets many times. In-Reply-To: <52402641.1135307852215.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-781?page=all ] A B updated DERBY-781: ---------------------- Derby Info: [Patch Available] > Materialize union subqueries in select list where possible to avoid creating invariant resultsets many times. > ------------------------------------------------------------------------------------------------------------- > > Key: DERBY-781 > URL: http://issues.apache.org/jira/browse/DERBY-781 > Project: Derby > Type: Improvement > Components: SQL > Versions: 10.1.1.0, 10.2.0.0 > Environment: generic > Reporter: Satheesh Bandaram > Assignee: A B > Attachments: DERBY-781_v1.html, d781_v1.patch, d781_v1.stat > > Derby's handling of union subqueries in from list can be improved by materializing invariant resultsets once, rather than creating them many times. > For example: > create view V1 as select i, j from T1 union select i,j from T2; > create view V2 as select a,b from T3 union select a,b from T4; > insert into T1 values (1,1), (2,2), (3,3), (4,4), (5,5); > For a query like select * from V1, V2 where V1.j = V2.b and V1.i in (1,2,3,4,5), it is possible the resultset for V2 is created 5 times. (assuming V2 is choosen as the the inner table) This can be very costly if the underlying selects can take long time and also may perform union many times. > Enhance materialization logic in setOperatorNode.java. It currently returns FALSE always. > public boolean performMaterialization(JBitSet outerTables) > throws StandardException > { > // RESOLVE - just say no to materialization right now - should be a cost based decision > return false; > /* Actual materialization, if appropriate, will be placed by our parent PRN. > * This is because PRN might have a join condition to apply. (Materialization > * can only occur before that. > */ > //return true; > } -- 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