You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2019/01/10 21:45:06 UTC

[beam] branch master updated (c739ca5 -> 627f2bc)

This is an automated email from the ASF dual-hosted git repository.

altay pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git.


    from c739ca5  [BEAM-6248] Add Flink v1.7 build target to Flink Runner  (#7300)
     add 547e3de  [BEAM-3612] Generate type assertion shims for beam.
     new 627f2bc  Merge pull request #7361 from lostluck/shims

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:
 sdks/go/cmd/starcgen/starcgen.go                   |  99 +++--
 sdks/go/pkg/beam/beam.shims.go                     | 336 +++++++++++++++++
 sdks/go/pkg/beam/coder.go                          |   7 -
 .../pkg/beam/core/runtime/coderx/coderx.shims.go   | 320 ++++++++++++++++
 sdks/go/pkg/beam/core/runtime/coderx/float.go      |   6 -
 sdks/go/pkg/beam/core/runtime/coderx/int.go        |  13 +-
 sdks/go/pkg/beam/core/runtime/coderx/varint.go     |   9 +-
 sdks/go/pkg/beam/create.go                         |   4 -
 sdks/go/pkg/beam/partition.go                      |   4 -
 sdks/go/pkg/beam/testing/passert/hash.go           |   5 -
 sdks/go/pkg/beam/testing/passert/passert.go        |   9 +-
 sdks/go/pkg/beam/testing/passert/passert.shims.go  | 405 +++++++++++++++++++++
 sdks/go/pkg/beam/testing/passert/sum.go            |   5 -
 sdks/go/pkg/beam/transforms/filter/distinct.go     |   5 -
 sdks/go/pkg/beam/transforms/filter/filter.go       |   9 +-
 sdks/go/pkg/beam/transforms/filter/filter.shims.go | 250 +++++++++++++
 sdks/go/pkg/beam/transforms/stats/count.go         |   6 +-
 sdks/go/pkg/beam/transforms/stats/stats.shims.go   |  13 +-
 sdks/go/pkg/beam/transforms/stats/util_gen.go      |   7 +-
 sdks/go/pkg/beam/transforms/stats/util_gen.tmpl    |   9 +-
 sdks/go/pkg/beam/transforms/top/top.go             |   8 +-
 sdks/go/pkg/beam/transforms/top/top.shims.go       | 156 ++++++++
 sdks/go/pkg/beam/util.go                           |   9 +-
 sdks/go/pkg/beam/util/shimx/generate.go            |   8 +
 sdks/go/pkg/beam/util/starcgenx/starcgenx.go       |   8 +-
 sdks/go/pkg/beam/x/debug/debug.shims.go            | 394 ++++++++++++++++++++
 sdks/go/pkg/beam/x/debug/head.go                   |   8 +-
 sdks/go/pkg/beam/x/debug/print.go                  |   8 -
 28 files changed, 1983 insertions(+), 137 deletions(-)
 create mode 100644 sdks/go/pkg/beam/beam.shims.go
 create mode 100644 sdks/go/pkg/beam/core/runtime/coderx/coderx.shims.go
 create mode 100644 sdks/go/pkg/beam/testing/passert/passert.shims.go
 create mode 100644 sdks/go/pkg/beam/transforms/filter/filter.shims.go
 create mode 100644 sdks/go/pkg/beam/transforms/top/top.shims.go
 create mode 100644 sdks/go/pkg/beam/x/debug/debug.shims.go


[beam] 01/01: Merge pull request #7361 from lostluck/shims

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

altay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git

commit 627f2bc4f8fbc6efdd4d4616a12540a79f08885a
Merge: c739ca5 547e3de
Author: Ahmet Altay <aa...@gmail.com>
AuthorDate: Thu Jan 10 13:44:55 2019 -0800

    Merge pull request #7361 from lostluck/shims
    
    [BEAM-3612] Generate type assertion shims for beam.

 sdks/go/cmd/starcgen/starcgen.go                   |  99 +++--
 sdks/go/pkg/beam/beam.shims.go                     | 336 +++++++++++++++++
 sdks/go/pkg/beam/coder.go                          |   7 -
 .../pkg/beam/core/runtime/coderx/coderx.shims.go   | 320 ++++++++++++++++
 sdks/go/pkg/beam/core/runtime/coderx/float.go      |   6 -
 sdks/go/pkg/beam/core/runtime/coderx/int.go        |  13 +-
 sdks/go/pkg/beam/core/runtime/coderx/varint.go     |   9 +-
 sdks/go/pkg/beam/create.go                         |   4 -
 sdks/go/pkg/beam/partition.go                      |   4 -
 sdks/go/pkg/beam/testing/passert/hash.go           |   5 -
 sdks/go/pkg/beam/testing/passert/passert.go        |   9 +-
 sdks/go/pkg/beam/testing/passert/passert.shims.go  | 405 +++++++++++++++++++++
 sdks/go/pkg/beam/testing/passert/sum.go            |   5 -
 sdks/go/pkg/beam/transforms/filter/distinct.go     |   5 -
 sdks/go/pkg/beam/transforms/filter/filter.go       |   9 +-
 sdks/go/pkg/beam/transforms/filter/filter.shims.go | 250 +++++++++++++
 sdks/go/pkg/beam/transforms/stats/count.go         |   6 +-
 sdks/go/pkg/beam/transforms/stats/stats.shims.go   |  13 +-
 sdks/go/pkg/beam/transforms/stats/util_gen.go      |   7 +-
 sdks/go/pkg/beam/transforms/stats/util_gen.tmpl    |   9 +-
 sdks/go/pkg/beam/transforms/top/top.go             |   8 +-
 sdks/go/pkg/beam/transforms/top/top.shims.go       | 156 ++++++++
 sdks/go/pkg/beam/util.go                           |   9 +-
 sdks/go/pkg/beam/util/shimx/generate.go            |   8 +
 sdks/go/pkg/beam/util/starcgenx/starcgenx.go       |   8 +-
 sdks/go/pkg/beam/x/debug/debug.shims.go            | 394 ++++++++++++++++++++
 sdks/go/pkg/beam/x/debug/head.go                   |   8 +-
 sdks/go/pkg/beam/x/debug/print.go                  |   8 -
 28 files changed, 1983 insertions(+), 137 deletions(-)