Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 8947E200D63 for ; Thu, 21 Dec 2017 11:00:35 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 8822A160C2B; Thu, 21 Dec 2017 10:00:35 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id CE77F160C1A for ; Thu, 21 Dec 2017 11:00:34 +0100 (CET) Received: (qmail 69381 invoked by uid 500); 21 Dec 2017 10:00: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 69371 invoked by uid 99); 21 Dec 2017 10:00:33 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Dec 2017 10:00:33 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 6DF11C04F3 for ; Thu, 21 Dec 2017 10:00:33 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.011 X-Spam-Level: X-Spam-Status: No, score=-100.011 tagged_above=-999 required=6.31 tests=[RCVD_IN_DNSWL_NONE=-0.0001, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id Vp0rp6NZjXpF for ; Thu, 21 Dec 2017 10:00:29 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id ECD6B5FBAC for ; Thu, 21 Dec 2017 10:00:24 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 5F016E25CE for ; Thu, 21 Dec 2017 10:00:23 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 0FBC2240EE for ; Thu, 21 Dec 2017 10:00:23 +0000 (UTC) Date: Thu, 21 Dec 2017 10:00:23 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@flink.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FLINK-8302) Support shift_left and shift_right in TableAPI MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 21 Dec 2017 10:00:35 -0000 [ https://issues.apache.org/jira/browse/FLINK-8302?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16299808#comment-16299808 ] ASF GitHub Bot commented on FLINK-8302: --------------------------------------- GitHub user dubin555 opened a pull request: https://github.com/apache/flink/pull/5197 [FLINK-8302][table]Add SHIFT_LEFT and SHIFT_RIGHT supported in SQL In this PR, SHIFT_LEFT and SHIFT_RIGHT are added. ## General - *The pull request references the related JIRA issue, [FLINK-8302]Support shift_left and shift_right in TableAPI* - *The pull request addresses only one issue* - *Each commit in the PR has a meaningful commit message (including the JIRA id)* ## Tests & Build - Functionality added by the pull request is covered by tests ## Documentation - Does this pull request introduce a new feature? (yes ) - If yes, how is the feature documented? (docs / JavaDocs) You can merge this pull request into a Git repository by running: $ git pull https://github.com/dubin555/flink master Alternatively you can review and apply these changes as the patch at: https://github.com/apache/flink/pull/5197.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #5197 ---- commit 3db3a65178a91fce8d92b741cf58d4e02c96212e Author: DuBin Date: 2017-12-21T09:02:33Z [FLINK-8302][table]Add SHIFT_LEFT and SHIFT_RIGHT supported in SQL commit 89ac219a65e4b6b0dc03873b13b8b997cfb474fe Author: DuBin Date: 2017-12-21T10:00:19Z [FLINK-8302][table]Add SHIFT_LEFT and SHIFT_RIGHT supported in SQL ---- > Support shift_left and shift_right in TableAPI > ---------------------------------------------- > > Key: FLINK-8302 > URL: https://issues.apache.org/jira/browse/FLINK-8302 > Project: Flink > Issue Type: Improvement > Components: Table API & SQL > Reporter: DuBin > Labels: features > Fix For: 1.5.0 > > Original Estimate: 48h > Remaining Estimate: 48h > > Add shift_left and shift_right support in TableAPI, shift_left(input, n) act as input << n, shift_right(input, n) act as input >> n. -- This message was sent by Atlassian JIRA (v6.4.14#64029)