This is an automated email from the ASF dual-hosted git repository.
reuvenlax pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git.
from 2940915 Merge pull request #6382 from apilloud/sqlagg
add dca825d Add Unnest transform.
add 6f5e4a2 Apply spotless.
add b4f9a7b Add javadoc.
add 4912cd9 Address CR comments.
add 1ecbdd5 Address code-review comments.
add c8acedf Fix duplicate field names in SQL.
add 73b980a8 Fix comment.
add ebce0d7 Fix typo.
new 738bf00 Merge pull request #6316: [BEAM-4461] Add Unnest transform.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../java/org/apache/beam/sdk/schemas/Schema.java | 17 ++-
.../apache/beam/sdk/schemas/transforms/Unnest.java | 170 +++++++++++++++++++++
.../org/apache/beam/sdk/transforms/Create.java | 13 ++
.../beam/sdk/schemas/transforms/UnnestTest.java | 161 +++++++++++++++++++
.../sdk/extensions/sql/impl/rel/BeamJoinRel.java | 34 +++--
.../sql/impl/transform/BeamJoinTransforms.java | 61 ++++----
6 files changed, 409 insertions(+), 47 deletions(-)
create mode 100644
sdks/java/core/src/main/java/org/apache/beam/sdk/schemas/transforms/Unnest.java
create mode 100644
sdks/java/core/src/test/java/org/apache/beam/sdk/schemas/transforms/UnnestTest.java