GitHub user XuMingmin opened a pull request:
https://github.com/apache/beam/pull/3138
[BEAM-2292] PCollection as a Table
add BeamPCollectionTable to create table from PCollection<BeamSQLRow>
Note that it changes the interface of `BaseBeamTable`, as a
`BeamPCollectionTable` doesn't start from `PBegin`, return
`PCollection<BeamSQLRow>` is more clear:
```
- public abstract PTransform<? super PBegin, PCollection<BeamSQLRow>>
buildIOReader();
+ public abstract PCollection<BeamSQLRow> buildIOReader(Pipeline pipeline);
```
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/XuMingmin/beam BEAM-2292
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/beam/pull/3138.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 #3138
----
commit 148e0b30cf1a7e6be3ddb1fd75f4e4265090d708
Author: mingmxu <[email protected]>
Date: 2017-05-14T20:22:30Z
add BeamPCollectionTable to create table from PCollection<BeamSQLRow>
----
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---