You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Chiwan Park (JIRA)" <ji...@apache.org> on 2015/08/02 23:38:05 UTC

[jira] [Comment Edited] (FLINK-2166) Add fromCsvFile() to TableEnvironment

    [ https://issues.apache.org/jira/browse/FLINK-2166?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14642017#comment-14642017 ] 

Chiwan Park edited comment on FLINK-2166 at 8/2/15 9:37 PM:
------------------------------------------------------------

Hi [~James_cao], You can check the build status of the current master branch in https://travis-ci.org/apache/flink/. From the status page, the current master branch seems okay.

Could you rebase your branch to current master branch? You can rebase following commands. (I assumed that apache flink git repository is added as 'upstream'.)

{code}
git fetch upstream master
git checkout master
git merge upstream/master
git checkout <YOUR_BRANCH>
git rebase master
{code}

After rebasing, you can test your changes. :)


was (Author: chiwanpark):
Hi [~James_cao], You can check the build status of the current master branch in https://travis-ci.org/apache/flink/. From the status page, the current master branch seems okay.

Could you rebase your branch to current master branch? You can rebase following commands. (I assumed that apache flink git repository is added as 'upstream'.)

{code}
git fetch upstream/master
git checkout master
git merge upstream/master
git checkout <YOUR_BRANCH>
git rebase master
{code}

After rebasing, you can test your changes. :)

> Add fromCsvFile() to TableEnvironment
> -------------------------------------
>
>                 Key: FLINK-2166
>                 URL: https://issues.apache.org/jira/browse/FLINK-2166
>             Project: Flink
>          Issue Type: New Feature
>          Components: Table API
>    Affects Versions: 0.9
>            Reporter: Fabian Hueske
>            Priority: Minor
>              Labels: starter
>
> Add a {{fromCsvFile()}} method to the {{TableEnvironment}} to read a {{Table}} from a CSV file.
> The implementation should reuse Flink's CsvInputFormat.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)