You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by bh...@apache.org on 2020/09/11 17:59:38 UTC

[beam] branch master updated (738a910 -> 422e111)

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

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


    from 738a910  [BEAM-9561] Fix issue with pickling in doctests. (#12560)
     add 422e111  [BEAM-10009] Add beam:logical_type:micros_instant:v1 (#12764)

No new revisions were added by this update.

Summary of changes:
 .../beam/model/fnexecution/v1/standard_coders.yaml |   9 +
 .../runners/core/construction/CommonCoderTest.java |   8 +-
 .../core/construction/SchemaTranslationTest.java   |   6 +-
 .../java/org/apache/beam/sdk/schemas/Schema.java   |  34 +++-
 .../apache/beam/sdk/schemas/SchemaTranslation.java |  76 ++++++--
 .../sdk/schemas/logicaltypes/MicrosInstant.java    |  73 ++++++++
 .../beam/sdk/schemas/logicaltypes/NanosType.java   |   1 +
 .../beam/sdk/schemas/logicaltypes/SqlTypes.java    |   4 +
 sdks/python/apache_beam/coders/row_coder.py        |  34 ++++
 sdks/python/apache_beam/coders/row_coder_test.py   |  49 ++++-
 .../apache_beam/coders/standard_coders_test.py     |   9 +
 sdks/python/apache_beam/typehints/schemas.py       | 207 ++++++++++++++++++++-
 sdks/python/apache_beam/typehints/schemas_test.py  |   3 +
 13 files changed, 478 insertions(+), 35 deletions(-)
 create mode 100644 sdks/java/core/src/main/java/org/apache/beam/sdk/schemas/logicaltypes/MicrosInstant.java