You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by akedin <gi...@git.apache.org> on 2017/11/14 06:55:16 UTC

[GitHub] beam pull request #4128: [BEAM-3181][Nexmark][SQL] Implement query0

GitHub user akedin opened a pull request:

    https://github.com/apache/beam/pull/4128

    [BEAM-3181][Nexmark][SQL] Implement query0

    This implements a basic pass-through query0. 
    
    This PR does not depend on the refactoring PRs and can be merged independently while the other ones are being worked on.
    
    This sets up a basic scaffolding which will help implementing other queries.
    
    [BEAM-3181](https://issues.apache.org/jira/browse/BEAM-3181) is a subtask of [BEAM-3147](https://issues.apache.org/jira/browse/BEAM-3147)
    
    
    Follow this checklist to help us incorporate your contribution quickly and easily:
    
     - [ ] Make sure there is a [JIRA issue](https://issues.apache.org/jira/projects/BEAM/issues/) filed for the change (usually before you start working on it).  Trivial changes like typos do not require a JIRA issue.  Your pull request should address just this issue, without pulling in other changes.
     - [ ] Each commit in the pull request should have a meaningful subject line and body.
     - [ ] Format the pull request title like `[BEAM-XXX] Fixes bug in ApproximateQuantiles`, where you replace `BEAM-XXX` with the appropriate JIRA issue.
     - [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
     - [ ] Run `mvn clean verify` to make sure basic checks pass. A more thorough check will be performed on your pull request automatically.
     - [ ] If this contribution is large, please file an Apache [Individual Contributor License Agreement](https://www.apache.org/licenses/icla.pdf).
    
    ---


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/akedin/beam nexmark-sql-query0

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/beam/pull/4128.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 #4128
    
----
commit 5d81ac0253726b036b7f1264e3719ee7507fedf7
Author: Anton Kedin <ke...@google.com>
Date:   2017-11-10T22:10:05Z

    [Nexmark][SQL] Add helper classes to map java models to BeamRecords

commit db74b7a9da863681b46f8562f681a59fc36ce3f9
Author: Anton Kedin <ke...@google.com>
Date:   2017-11-11T00:06:58Z

    [Nexmark][SQL] Implement sql query 0

commit 050bdab2afe544b8a5c58bfe1dfe1914a9820c8f
Author: Anton Kedin <ke...@google.com>
Date:   2017-11-14T05:29:49Z

    [Nexmark][SQL] Unit test for SqlQuery0

----


---