You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sd...@apache.org on 2023/01/25 13:02:31 UTC

[ignite-3] branch ignite-18446 updated (d5cfe5063f -> 654c658f9c)

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

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


    omit d5cfe5063f IGNITE-18446 Add busylock to raft service.
     add ba4fb5b049 IGNITE-18583 Fix C++ build (#1548)
     add a8152876f1 IGNITE-18030 Integration of the new full rebalance API with IncomingSnapshotCopier (#1562)
     add 4c8ad63012 IGNITE-18580 Sql. Redesign the Exchange to use a pull-based approach (#1553)
     add d5bdbf1c8c IGNITE-18478 .NET: Add ExecuteReader to SQL API (#1567)
     add 89674e022c IGNITE-18601 Copy configuration tree when adding default values (#1570)
     add 819fe8a02c IGNITE-18626 .NET: Fix nullable result handling in LINQ (#1571)
     add a48cd24ca3 IGNITE-18488 SQL: SUBSTRING function does not support NULL values (#1566)
     add 748c41b56c IGNITE-18627 .NET: Fix empty result set handling in IgniteDbDataReader (#1573)
     add b6ff1ea62f IGNITE-18614 .NET: Fix test data cleanup (#1575)
     add 01f30d0d0d IGNITE-18629 Slightly improve busyLock usage in TxStateRocksDbStorage (#1574)
     add 654c658f9c IGNITE-18446 Add busylock to raft service.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d5cfe5063f)
            \
             N -- N -- N   refs/heads/ignite-18446 (654c658f9c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../internal/jdbc/proto/event/JdbcColumnMeta.java  |   5 +
 .../configuration/util/ConfigurationUtil.java      |  13 +-
 .../configuration/util/ConfigurationUtilTest.java  |  22 +
 .../apache/ignite/jdbc/ItJdbcMetadataSelfTest.java |  53 +-
 modules/platforms/cpp/DEVNOTES.md                  |  49 +-
 .../ignite/client/detail/cluster_connection.cpp    |  21 +-
 .../{ignite_logger.h => detail/logger_wrapper.h}   |  64 +-
 .../cpp/ignite/client/detail/node_connection.h     |   5 +
 .../platforms/cpp/ignite/client/ignite_logger.h    |   6 +
 .../platforms/cpp/tests/client-test/gtest_logger.h |   4 +
 .../cpp/tests/client-test/ignite_client_test.cpp   |   2 +-
 .../cpp/tests/client-test/ignite_runner_suite.h    |  18 +-
 modules/platforms/cpp/tests/client-test/main.cpp   |  34 +-
 .../tests/client-test/record_binary_view_test.cpp  |   2 +-
 .../platforms/cpp/tests/client-test/sql_test.cpp   |   6 +-
 .../cpp/tests/client-test/tables_test.cpp          |  10 +-
 .../cpp/tests/client-test/transactions_test.cpp    |   2 +-
 .../cpp/tests/test-common/ignite_runner.cpp        |  14 +-
 .../cpp/tests/test-common/ignite_runner.h          |   4 +-
 .../platforms/cpp/tests/test-common/test_utils.cpp |  12 +-
 .../platforms/cpp/tests/test-common/test_utils.h   |  17 +
 .../dotnet/Apache.Ignite.Benchmarks/Program.cs     |   4 +-
 .../Sql/ResultSetBenchmarks.cs                     |  33 +-
 .../Buffers/ByteArrayPoolTests.cs                  |   2 +
 .../dotnet/Apache.Ignite.Tests/Linq/LinqTests.cs   |  11 +
 .../Proto/BinaryTuple/BinaryTupleTests.cs          |  10 +
 .../Sql/IgniteDbDataReaderTests.cs                 | 674 +++++++++++++++++++++
 .../dotnet/Apache.Ignite.Tests/Sql/SqlTests.cs     |   4 +
 .../Apache.Ignite/Internal/Linq/ResultSelector.cs  |   2 +-
 .../Proto/BinaryTuple/BinaryTupleReader.cs         |   7 +
 .../dotnet/Apache.Ignite/Internal/Sql/ResultSet.cs |  64 +-
 .../dotnet/Apache.Ignite/Internal/Sql/Sql.cs       |  15 +-
 .../Internal/Sql/SqlColumnTypeExtensions.cs        |  16 +
 modules/platforms/dotnet/Apache.Ignite/Sql/ISql.cs |  10 +
 .../PreferredNode.cs => Sql/IgniteDbColumn.cs}     |  43 +-
 .../dotnet/Apache.Ignite/Sql/IgniteDbDataReader.cs | 537 ++++++++++++++++
 modules/platforms/dotnet/DEVNOTES.md               |   6 +-
 .../{test_avg.test_ignore => test_avg.test}        |   1 -
 .../sql/aggregate/aggregates/test_scalar_aggr.test |  49 ++
 .../aggregates/test_scalar_aggr.test_ignore        |   3 +-
 .../{test_nvl.test_ignore => test_nvl.test}        |   1 -
 ...est_truncate.test_ignore => test_truncate.test} |   1 -
 ...seconvert.test_ignore => test_caseconvert.test} |   1 -
 ...{test_initcap.test_ignore => test_initcap.test} |   1 -
 .../{test_left.test_ignore => test_left.test}      |   1 -
 .../{test_repeat.test_ignore => test_repeat.test}  |   1 -
 ...{test_replace.test_ignore => test_replace.test} |   1 -
 ...{test_reverse.test_ignore => test_reverse.test} |   1 -
 .../{test_right.test_ignore => test_right.test}    |   1 -
 ...t_substring.test_ignore => test_substring.test} |   1 -
 .../{test_trim.test_ignore => test_trim.test}      |   1 -
 ...{test_is_null.test_ignore => test_is_null.test} |   1 -
 .../null/{test_null.test_ignore => test_null.test} |   1 -
 .../internal/sql/engine/SqlQueryProcessor.java     |   2 -
 .../internal/sql/engine/exec/ExchangeService.java  |  15 +-
 .../sql/engine/exec/ExchangeServiceImpl.java       | 108 ++--
 .../sql/engine/exec/ExecutionServiceImpl.java      |   4 +-
 .../sql/engine/exec/LogicalRelImplementor.java     |   9 +-
 .../internal/sql/engine/exec/MailboxRegistry.java  |  20 +-
 .../sql/engine/exec/MailboxRegistryImpl.java       |  40 +-
 .../internal/sql/engine/exec/rel/AbstractNode.java |   8 +-
 .../sql/engine/exec/rel/AsyncRootNode.java         | 120 ++--
 .../ignite/internal/sql/engine/exec/rel/Inbox.java | 340 ++++++-----
 .../internal/sql/engine/exec/rel/Outbox.java       | 289 +++++----
 ...eMessage.java => QueryBatchRequestMessage.java} |  17 +-
 .../sql/engine/message/SqlQueryMessageGroup.java   |   3 +-
 .../ignite/internal/sql/engine/util/Commons.java   |   3 +
 .../sql/engine/benchmarks/SqlBenchmark.java        |  43 +-
 .../sql/engine/exec/ExecutionServiceImplTest.java  |   4 +-
 .../sql/engine/exec/rel/AbstractExecutionTest.java |   5 +-
 .../sql/engine/exec/rel/ExchangeExecutionTest.java | 238 ++++++++
 ...sterService.java => ClusterServiceFactory.java} |  12 +-
 .../sql/engine/framework/DataProvider.java         |  42 ++
 .../sql/engine/framework/TestBuilders.java         | 107 +++-
 .../internal/sql/engine/framework/TestNode.java    |   2 +-
 .../internal/table/distributed/TableManager.java   |  32 +-
 .../distributed/raft/snapshot/PartitionAccess.java |  86 ++-
 .../raft/snapshot/PartitionAccessImpl.java         |  82 +--
 .../snapshot/incoming/IncomingSnapshotCopier.java  | 379 ++++++------
 .../incoming/IncomingSnapshotCopierTest.java       |   9 +-
 .../state/rocksdb/TxStateRocksDbStorage.java       | 501 +++++++--------
 .../state/rocksdb/RocksDbTxStateStorageTest.java   |   6 +-
 .../storage/state/AbstractTxStateStorageTest.java  |   2 +-
 .../state/test/TestTxStateTableStorage.java        |   4 +-
 84 files changed, 3142 insertions(+), 1257 deletions(-)
 copy modules/platforms/cpp/ignite/client/{ignite_logger.h => detail/logger_wrapper.h} (53%)
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Tests/Sql/IgniteDbDataReaderTests.cs
 copy modules/platforms/dotnet/Apache.Ignite/{Internal/Proto/PreferredNode.cs => Sql/IgniteDbColumn.cs} (50%)
 create mode 100644 modules/platforms/dotnet/Apache.Ignite/Sql/IgniteDbDataReader.cs
 rename modules/runner/src/integrationTest/sql/aggregate/aggregates/{test_avg.test_ignore => test_avg.test} (89%)
 create mode 100644 modules/runner/src/integrationTest/sql/aggregate/aggregates/test_scalar_aggr.test
 rename modules/runner/src/integrationTest/sql/function/generic/{test_nvl.test_ignore => test_nvl.test} (83%)
 rename modules/runner/src/integrationTest/sql/function/numeric/{test_truncate.test_ignore => test_truncate.test} (88%)
 rename modules/runner/src/integrationTest/sql/function/string/{test_caseconvert.test_ignore => test_caseconvert.test} (96%)
 rename modules/runner/src/integrationTest/sql/function/string/{test_initcap.test_ignore => test_initcap.test} (89%)
 rename modules/runner/src/integrationTest/sql/function/string/{test_left.test_ignore => test_left.test} (95%)
 rename modules/runner/src/integrationTest/sql/function/string/{test_repeat.test_ignore => test_repeat.test} (95%)
 rename modules/runner/src/integrationTest/sql/function/string/{test_replace.test_ignore => test_replace.test} (95%)
 rename modules/runner/src/integrationTest/sql/function/string/{test_reverse.test_ignore => test_reverse.test} (93%)
 rename modules/runner/src/integrationTest/sql/function/string/{test_right.test_ignore => test_right.test} (95%)
 rename modules/runner/src/integrationTest/sql/function/string/{test_substring.test_ignore => test_substring.test} (97%)
 rename modules/runner/src/integrationTest/sql/function/string/{test_trim.test_ignore => test_trim.test} (97%)
 rename modules/runner/src/integrationTest/sql/types/null/{test_is_null.test_ignore => test_is_null.test} (90%)
 rename modules/runner/src/integrationTest/sql/types/null/{test_null.test_ignore => test_null.test} (92%)
 rename modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/message/{QueryBatchAcknowledgeMessage.java => QueryBatchRequestMessage.java} (70%)
 create mode 100644 modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/exec/rel/ExchangeExecutionTest.java
 rename modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/framework/{TestClusterService.java => ClusterServiceFactory.java} (95%)