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 2022/10/14 11:48:17 UTC

[ignite] branch ignite-17870 updated (75e299d3716 -> d0b2dbca9b0)

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

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


    from 75e299d3716 Styles.
     add 3306f5b27b4 IGNITE-17815 Java thin: Fix RetryPolicy exception handling, propagate exceptions to API caller (#10288)
     add 72aa5848bb8 IGNITE-17436 Fix CacheGroupReencryptionTest#testReencryptionOnUnstableTopology fails if checkpoint is skipped on node stop (#10289)
     add 830e7315265 IGNITE-17805 Fail a test if it tries to launch remote JVM with different major Java version (#10287)
     add 97cf70cc9ee IGNITE-17837 CacheExchangeMergeTest.testConcurrentStartServers sometimes hangs forever (#10290)
     add 607839cef8f IGNITE-17847 Dump threads if afterTest() times out (#10295)
     add 6cb6dd2b1f4 IGNITE-17852 Fix incorrect for compression CRC assert (#10298)
     add c0f1eb78709 IGNITE-17863 ThreadNameValidationTest fails if run alone (or first in suite) (#10301)
     add 6bae7c5554c .NET: Fix 2.14 release notes - add IgniteSet
     add 3d24cf73456 IGNITE-13022 SQL Calcite: Merge index conditions for the same field - Fixes #10306.
     add 467484f2f94 IGNITE-17736 Consistency repair should support multiply partitions (#10304)
     add d0b2dbca9b0 Merge branch 'master' into ignite-17870

No new revisions were added by this update.

Summary of changes:
 RELEASE_NOTES.txt                                  |   1 +
 docs/_docs/tools/control-script.adoc               |   6 +-
 .../processors/query/calcite/util/RexUtils.java    | 164 +++++++++++++++++----
 .../CalciteBasicSecondaryIndexIntegrationTest.java |  43 ++++++
 ...Test.java => IndexSearchBoundsPlannerTest.java} |  55 ++++++-
 .../apache/ignite/testsuites/PlannerTestSuite.java |   4 +-
 .../junits/IgniteCompatibilityAbstractTest.java    |   2 +-
 .../consistency/ConsistencyCommand.java            |  23 +--
 .../util/GridCommandHandlerClusterByClassTest.java |   4 +-
 .../GridCommandHandlerConsistencyCountersTest.java |   4 +-
 ...sistencyRepairCorrectnessTransactionalTest.java |   2 +-
 .../util/GridCommandHandlerConsistencyTest.java    |  18 ++-
 .../ignite/util/KillCommandsCommandShTest.java     |   4 +-
 .../internal/client/thin/ReliableChannel.java      |   8 +-
 .../cache/persistence/file/FilePageStore.java      |   2 +-
 .../ignite/internal/util/GridJavaProcess.java      |  22 ++-
 .../consistency/VisorConsistencyRepairTask.java    |  73 ++++++++-
 .../consistency/VisorConsistencyRepairTaskArg.java |  25 ++--
 .../ignite/client/ExceptionRetryPolicy.java}       |   9 +-
 .../org/apache/ignite/client/ReliabilityTest.java  |  33 +++++
 .../ignite/internal/ThreadNameValidationTest.java  |  20 ++-
 .../encryption/CacheGroupReencryptionTest.java     |  89 ++++++++++-
 .../cache/distributed/CacheExchangeMergeTest.java  |   2 +-
 .../testframework/junits/GridAbstractTest.java     |  86 +++++++++--
 .../junits/multijvm/IgniteProcessProxy.java        |  49 ++++--
 .../junits/multijvm/JavaVersionCommand.java        |  68 +++++++++
 .../junits/multijvm/JavaVersionCommandParser.java} |  45 +++---
 .../multijvm/JavaVersionCommandParserTest.java     |  74 ++++++++++
 .../ignite/testsuites/IgniteBasicTestSuite.java    |   2 +
 .../{rebalance => }/DataGenerationApplication.java |   2 +-
 .../ignitetest/services/utils/control_utility.py   |  10 +-
 .../services/utils/ignite_configuration/cache.py   |   3 +
 .../tests/control_utility/consistency_test.py      |  89 ++++++++++-
 .../ignitetest/tests/rebalance/in_memory_test.py   |   5 +-
 .../ignitetest/tests/rebalance/persistent_test.py  |  11 +-
 .../tests/ignitetest/tests/rebalance/util.py       |  75 +---------
 modules/ducktests/tests/ignitetest/tests/util.py   | 105 +++++++++++++
 .../Client/ClientConnectionTest.cs                 |  29 ++++
 .../Client/TestRetryPolicy.cs                      |  11 ++
 39 files changed, 1052 insertions(+), 225 deletions(-)
 rename modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/{SearchSargOnIndexPlannerTest.java => IndexSearchBoundsPlannerTest.java} (88%)
 copy modules/core/src/{main/java/org/apache/ignite/client/ClientRetryAllPolicy.java => test/java/org/apache/ignite/client/ExceptionRetryPolicy.java} (82%)
 create mode 100644 modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/JavaVersionCommand.java
 copy modules/core/src/test/java/org/apache/ignite/{jvmtest/RegExpTest.java => testframework/junits/multijvm/JavaVersionCommandParser.java} (51%)
 create mode 100644 modules/core/src/test/java/org/apache/ignite/testframework/junits/multijvm/JavaVersionCommandParserTest.java
 rename modules/ducktests/src/main/java/org/apache/ignite/internal/ducktest/tests/{rebalance => }/DataGenerationApplication.java (98%)
 create mode 100644 modules/ducktests/tests/ignitetest/tests/util.py