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 4F487200C10 for ; Fri, 20 Jan 2017 06:39:29 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 4DFFA160B63; Fri, 20 Jan 2017 05:39:29 +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 9AE20160B5F for ; Fri, 20 Jan 2017 06:39:28 +0100 (CET) Received: (qmail 48042 invoked by uid 500); 20 Jan 2017 05:39:23 -0000 Mailing-List: contact commits-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 commits@flink.apache.org Received: (qmail 47251 invoked by uid 99); 20 Jan 2017 05:39:22 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Jan 2017 05:39:22 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5057FF403D; Fri, 20 Jan 2017 05:39:22 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: chesnay@apache.org To: commits@flink.apache.org Date: Fri, 20 Jan 2017 05:39:26 -0000 Message-Id: <4a53a48e7ffd44af90c84212bc72f815@git.apache.org> In-Reply-To: <2df5c80f77cd4524b71c6a74919194f0@git.apache.org> References: <2df5c80f77cd4524b71c6a74919194f0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [05/17] flink git commit: [FLINK-5434] Remove unsupported project() transformation from Scala DataStream docs. archived-at: Fri, 20 Jan 2017 05:39:29 -0000 [FLINK-5434] Remove unsupported project() transformation from Scala DataStream docs. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/ebf4443a Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/ebf4443a Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/ebf4443a Branch: refs/heads/release-1.2 Commit: ebf4443a87ec0a46cd821adc85187d9cb58ae992 Parents: 8cdbe44 Author: gaolun.gl Authored: Sat Jan 14 01:41:39 2017 +0800 Committer: zentol Committed: Thu Jan 19 21:42:00 2017 +0100 ---------------------------------------------------------------------- docs/dev/datastream_api.md | 28 ---------------------------- 1 file changed, 28 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/ebf4443a/docs/dev/datastream_api.md ---------------------------------------------------------------------- diff --git a/docs/dev/datastream_api.md b/docs/dev/datastream_api.md index 850d8c5..f6d17ab 100644 --- a/docs/dev/datastream_api.md +++ b/docs/dev/datastream_api.md @@ -911,34 +911,6 @@ DataStream> out = in.project(2,0); - -
- -
- - - - - - - - - - - - - - -
TransformationDescription
Project
DataStream → DataStream
-

Selects a subset of fields from the tuples -{% highlight scala %} -val in : DataStream[(Int,Double,String)] = // [...] -val out = in.project(2,0) -{% endhighlight %} -

-
- -