[
https://issues.apache.org/jira/browse/BEAM-301?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15968351#comment-15968351
]
ASF GitHub Bot commented on BEAM-301:
-------------------------------------
GitHub user XuMingmin opened a pull request:
https://github.com/apache/beam/pull/2530
[BEAM-301] Add a Beam SQL DSL
1. add `checkstyle` to `dsls` module, and update as indicated;
2. correct the package name from `org.beam.dsls.sql` to
`org.apache.beam.dsls.sql`;
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/XuMingmin/beam rename_package
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/beam/pull/2530.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 #2530
----
commit 529bc9d9375ae162d70de274975c547a878053a3
Author: mingmxu <[email protected]>
Date: 2017-04-13T21:46:28Z
checkstyle and rename package
correct package from org.beam.dsls.sql to org.apache.beam.dsls.sql
update with checkstyle
----
> Add a Beam SQL DSL
> ------------------
>
> Key: BEAM-301
> URL: https://issues.apache.org/jira/browse/BEAM-301
> Project: Beam
> Issue Type: New Feature
> Components: sdk-ideas
> Reporter: Jean-Baptiste Onofré
> Assignee: Xu Mingmin
>
> The SQL DSL helps developers to build a Beam pipeline from SQL statement in
> String directly.
> In Phase I, it starts to support INSERT/SELECT queries with FILTERs, one
> example SQL as below:
> {code}
> INSERT INTO `SUB_USEREVENT` (`SITEID`, `PAGEID`, `PAGENAME`, `EVENTTIMESTAMP`)
> (SELECT STREAM `USEREVENT`.`SITEID`, `USEREVENT`.`PAGEID`,
> `USEREVENT`.`PAGENAME`, `USEREVENT`.`EVENTTIMESTAMP`
> FROM `USEREVENT` AS `USEREVENT`
> WHERE `USEREVENT`.`SITEID` > 10)
> {code}
> A design doc is available at
> https://docs.google.com/document/d/1Uc5xYTpO9qsLXtT38OfuoqSLimH_0a1Bz5BsCROMzCU/edit?usp=sharing.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)