You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by am...@apache.org on 2021/07/20 13:44:18 UTC

[ignite-3] branch ignite-13669 updated (186d457 -> 89daa10)

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

amashenkov pushed a change to branch ignite-13669
in repository https://gitbox.apache.org/repos/asf/ignite-3.git.


    from 186d457  Merge branch 'main' into ignite-13669
     add 89daa10  Add precision for temporal types.

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/ignite/schema/ColumnType.java  |  94 +++++++++++--
 .../apache/ignite/internal/schema/NativeTypes.java |  80 ++++++++---
 .../ignite/internal/schema/TemporalNativeType.java | 149 +++++++++++++++++++++
 .../SchemaConfigurationConverter.java              |  46 ++++++-
 .../configuration/SchemaDescriptorConverter.java   |  25 +++-
 .../org/apache/ignite/internal/schema/row/Row.java |  59 +++++++-
 .../ignite/internal/schema/row/RowAssembler.java   |  73 +++++++---
 .../internal/schema/row/TemporalTypesHelper.java   |  68 ++++++++--
 .../ignite/internal/schema/NativeTypeTest.java     |  85 ++++++++++--
 .../org/apache/ignite/internal/schema/RowTest.java |  69 ++++++----
 .../ignite/internal/schema/TemporalTypesTest.java  |  34 +++--
 .../apache/ignite/internal/schema/TestUtils.java   |  26 +++-
 12 files changed, 693 insertions(+), 115 deletions(-)
 create mode 100644 modules/schema/src/main/java/org/apache/ignite/internal/schema/TemporalNativeType.java