Return-Path: X-Original-To: apmail-flink-issues-archive@minotaur.apache.org Delivered-To: apmail-flink-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7A0D518D8B for ; Wed, 16 Mar 2016 13:13:34 +0000 (UTC) Received: (qmail 67368 invoked by uid 500); 16 Mar 2016 13:13:34 -0000 Delivered-To: apmail-flink-issues-archive@flink.apache.org Received: (qmail 67071 invoked by uid 500); 16 Mar 2016 13:13:34 -0000 Mailing-List: contact issues-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list issues@flink.apache.org Received: (qmail 67041 invoked by uid 99); 16 Mar 2016 13:13:34 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Mar 2016 13:13:34 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id EC56D2C1F54 for ; Wed, 16 Mar 2016 13:13:33 +0000 (UTC) Date: Wed, 16 Mar 2016 13:13:33 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@flink.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FLINK-3503) ProjectJoinTransposeRule fails to push down project. 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/FLINK-3503?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15197279#comment-15197279 ] ASF GitHub Bot commented on FLINK-3503: --------------------------------------- Github user vasia commented on the pull request: https://github.com/apache/flink/pull/1798#issuecomment-197321103 Merging this one too. > ProjectJoinTransposeRule fails to push down project. > ---------------------------------------------------- > > Key: FLINK-3503 > URL: https://issues.apache.org/jira/browse/FLINK-3503 > Project: Flink > Issue Type: Improvement > Components: Table API > Reporter: Chengxiang Li > Priority: Minor > > {noformat} > val ds1 = CollectionDataSets.getSmall3TupleDataSet(env).as('a, 'b, 'c) > val ds2 = CollectionDataSets.get5TupleDataSet(env).as('d, 'e, 'f, 'g, 'h) > val joinT = ds1.join(ds2).where('b === 'e).select('c, 'g) > {noformat} > For this query, ProjectJoinTransposeRule should pushes a Project past a Join by splitting the projection into a projection on top of each child of the join. -- This message was sent by Atlassian JIRA (v6.3.4#6332)