You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ni...@apache.org on 2022/10/25 10:32:19 UTC

[ignite] 03/03: Merge branch 'master' into IGNITE-17177_inc_snapshots

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

nizhikov pushed a commit to branch IGNITE-17177_inc_snapshots
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit 0c485b05fb0be0771d40107a6e275a98bdee4a91
Merge: 672eebed47f a3804cca6ba
Author: Nikolay Izhikov <ni...@apache.org>
AuthorDate: Tue Oct 25 13:31:08 2022 +0300

    Merge branch 'master' into IGNITE-17177_inc_snapshots

 docs/_docs/restapi.adoc                            |   2 +-
 .../query/calcite/exec/AbstractIndexScan.java      |  11 +-
 .../query/calcite/exec/ExecutionContext.java       |   8 +
 .../calcite/exec/exp/ExpressionFactoryImpl.java    |  46 +-
 .../query/calcite/exec/exp/IgniteSqlFunctions.java |  24 +
 .../query/calcite/exec/exp/RangeIterable.java      |   8 +-
 .../query/calcite/exec/exp/RexImpTable.java        |  14 +-
 .../calcite/sql/fun/IgniteOwnSqlOperatorTable.java |  47 ++
 .../query/calcite/util/IgniteMethod.java           |  11 +-
 .../processors/query/calcite/util/RexUtils.java    |  90 ++-
 .../exec/rel/SortedIndexSpoolExecutionTest.java    |   4 +-
 .../CalciteBasicSecondaryIndexIntegrationTest.java |  25 +
 .../integration/IndexScanlIntegrationTest.java     | 160 ++++-
 .../planner/IndexSearchBoundsPlannerTest.java      |  62 +-
 .../planner/SortedIndexSpoolPlannerTest.java       |   3 +-
 .../test_tpcds_correlated_subquery.test_ignore     |  16 -
 modules/clients/pom.xml                            |   4 +-
 .../org/apache/ignite/IgniteSystemProperties.java  |   4 +
 .../ignite/configuration/ClientConfiguration.java  |  26 +
 .../client/thin/ClientBinaryMarshaller.java        |   2 +-
 .../client/thin/ClientChannelConfiguration.java    |  13 +
 .../thin/ClientInternalBinaryConfiguration.java    |   6 +
 .../internal/client/thin/ReliableChannel.java      |  50 +-
 .../internal/client/thin/TcpClientChannel.java     |  46 +-
 .../internal/client/thin/TcpIgniteClient.java      |  15 +-
 .../processors/cache/CacheOperationContext.java    |   7 +-
 .../preloader/GridDhtPartitionsExchangeFuture.java |  12 +-
 .../cache/persistence/checkpoint/Checkpointer.java |  39 +-
 .../java/org/apache/ignite/logger/NullLogger.java  |  11 +
 .../spi/deployment/local/LocalDeploymentSpi.java   |   2 -
 .../ignite/client/BinaryConfigurationTest.java     |  24 +-
 .../client/thin/AbstractThinClientTest.java        |   9 +-
 .../RebalanceIteratorLargeEntriesOOMTest.java      |   5 +-
 .../persistence/IgnitePdsCorruptedStoreTest.java   |  44 --
 .../MaintenancePersistenceTaskTest.java            |   5 +-
 .../db/wal/IgniteDisableWalOnRebalanceTest.java    | 130 ++++
 .../db/wal/WalRecoveryTxLogicalRecordsTest.java    | 794 ++++++++++-----------
 ...teWithoutArchiverWalIteratorInvalidCrcTest.java |   7 +-
 .../sql/SqlParserMultiStatementSelfTest.java       |  38 +
 .../platform/PlatformWaitForRebalanceTask.java     | 104 +++
 .../apache/ignite/testframework/GridTestUtils.java |  33 +-
 .../ignite/testsuites/IgnitePdsTestSuite4.java     |   2 +
 .../processors/query/h2/IgniteH2Indexing.java      |   3 +
 .../query/MultipleStatementsSqlQuerySelfTest.java  |   8 +-
 modules/kubernetes/pom.xml                         |   2 +-
 .../cpp/thin-client/src/impl/data_router.cpp       |   3 +-
 .../Cache/PartitionLossTest.cs                     |  51 +-
 .../Services/ServicesTest.cs                       |  85 ++-
 .../Impl/Services/ServiceProxyInvoker.cs           |  20 +-
 .../uri/GridUriDeploymentConfigSelfTest.java       |  37 +
 parent/pom.xml                                     |   2 +-
 51 files changed, 1506 insertions(+), 668 deletions(-)