You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by tl...@apache.org on 2022/03/18 08:09:58 UTC

[ignite-3] branch main updated (722fa5f -> c7b25f0)

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

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


    from 722fa5f  Disable tests under correct link
     add c7b25f0  IGNITE-16594 Colocation key hash code calculation (#721)

No new revisions were added by this update.

Summary of changes:
 .../ignite/internal/util/HashCalculator.java       | 260 +++++++++++++++++++++
 .../org/apache/ignite/internal/util/HashUtils.java | 217 +++++++++++++++++
 .../apache/ignite/internal/util/HashUtilsTest.java | 137 +++++++++++
 .../ignite/internal/schema/SchemaDescriptor.java   |   2 +-
 .../ignite/internal/util/ColocationUtils.java      | 142 +++++++++++
 .../ignite/internal/schema/SchemaTestUtils.java    |  20 ++
 .../table/ColocationHashCalculationTest.java       | 143 ++++++++++++
 7 files changed, 920 insertions(+), 1 deletion(-)
 create mode 100644 modules/core/src/main/java/org/apache/ignite/internal/util/HashCalculator.java
 create mode 100644 modules/core/src/test/java/org/apache/ignite/internal/util/HashUtilsTest.java
 create mode 100644 modules/schema/src/main/java/org/apache/ignite/internal/util/ColocationUtils.java
 create mode 100644 modules/table/src/test/java/org/apache/ignite/internal/table/ColocationHashCalculationTest.java