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 824CC200C03 for ; Fri, 6 Jan 2017 11:12:02 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 80C92160B1F; Fri, 6 Jan 2017 10:12:02 +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 A0F4B160B4D for ; Fri, 6 Jan 2017 11:12:01 +0100 (CET) Received: (qmail 64230 invoked by uid 500); 6 Jan 2017 10:12:00 -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 63310 invoked by uid 99); 6 Jan 2017 10:11:59 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Jan 2017 10:11:59 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 596CA2C1F54 for ; Fri, 6 Jan 2017 10:11:59 +0000 (UTC) Date: Fri, 6 Jan 2017 10:11:59 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@flink.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FLINK-4565) Support for SQL IN operator MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Fri, 06 Jan 2017 10:12:02 -0000 [ https://issues.apache.org/jira/browse/FLINK-4565?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15804203#comment-15804203 ] ASF GitHub Bot commented on FLINK-4565: --------------------------------------- Github user twalthr commented on a diff in the pull request: https://github.com/apache/flink/pull/2870#discussion_r94801637 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/api/scala/table/expressionDsl.scala --- @@ -110,6 +111,9 @@ trait ImplicitExpressionOperations { def asc = Asc(expr) def desc = Desc(expr) + + def in(subquery: Expression*) = In(expr, subquery) --- End diff -- Documentation is missing. > Support for SQL IN operator > --------------------------- > > Key: FLINK-4565 > URL: https://issues.apache.org/jira/browse/FLINK-4565 > Project: Flink > Issue Type: Improvement > Components: Table API & SQL > Reporter: Timo Walther > Assignee: Nikolay Vasilishin > > It seems that Flink SQL supports the uncorrelated sub-query IN operator. But it should also be available in the Table API and tested. -- This message was sent by Atlassian JIRA (v6.3.4#6332)