This is an automated email from the ASF dual-hosted git repository.
amashenkov pushed a change to branch ignite-19942
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
omit d975dca13c Mirror Index changes from Config to Catalog
omit d93e2f0207 Mirror Table changes from Config to Catalog.
omit fd79660fb4 Mirror DistributionZone changes from Config to Catalog.
add 1910afa0b1 IGNITE-18959 Placement driver's local map cleanup on
assingments removal (#2292)
add 7e1e0cf74c IGNITE-19914 .NET: Fix colocation column order (#2308)
add d305b4f153 IGNITE-19801 Move ConfigurationStorageRevisionListener to
test fixtures (#2307)
add f8a280e514 IGNITE-19954 .NET: Work around tx conflicts in
TestAutoFlushFrequency (#2309)
add 0a6e79264b IGNITE-19948 Add authenticated username to the prompt
(#2304)
add 7a5fb6bc54 IGNITE-19941 Sql. Test
ExecutionServiceImplTest.testCancelOnInitiator is flaky (#2305)
add e741560fd3 IGNITE-19927 Improve test coverage for CREATE TABLE (#2297)
add 2e08b78f77 Mirror DistributionZone changes from Config to Catalog.
add 9bddcb851e Mirror Table changes from Config to Catalog.
add 8a7a6ab93e Mirror Index changes from Config to Catalog
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 (d975dca13c)
\
N -- N -- N refs/heads/ignite-19942 (8a7a6ab93e)
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/catalog/CatalogServiceImpl.java | 64 ++++++++++-
.../internal/catalog/CatalogServiceSelfTest.java | 128 +++++++++++++++++----
.../ItConnectToClusterTestBase.java | 10 +-
...tConnectWithBasicAuthenticationCommandTest.java | 102 ++++++++++++++++
.../commands/questions/ItConnectToClusterTest.java | 1 +
.../questions/ItConnectToSslClusterTest.java | 1 +
.../repl/executor/ItIgnitePicocliCommandsTest.java | 2 +-
.../internal/cli/call/connect/ConnectCall.java | 38 +++++-
.../handler/IgniteCliApiExceptionHandler.java | 8 +-
.../ignite/internal/cli/core/repl/SessionInfo.java | 9 +-
.../cli/core/repl/prompt/ReplPromptProvider.java | 13 ++-
.../internal/cli/core/rest/ApiClientFactory.java | 39 +++++--
.../core/repl/SessionDefaultValueProviderTest.java | 2 +-
.../filter/DynamicCompleterFilterTest.java | 3 +-
.../configuration/ConfigurationChanger.java | 69 ++++-------
.../configuration/ConfigurationRegistry.java | 57 +--------
.../storage/ConfigurationStorageListener.java | 9 +-
.../notifications/ConfigurationListenerTest.java | 105 +----------------
.../configuration/TestConfigurationChanger.java | 5 -
.../ConfigurationStorageRevisionListener.java | 1 -
...ConfigurationStorageRevisionListenerHolder.java | 0
.../internal/metastorage/MetaStorageManager.java | 10 ++
.../ignite/internal/metastorage/WatchListener.java | 11 --
.../metastorage/impl/MetaStorageManagerImpl.java | 2 +
.../ignite/internal/metastorage/server/Watch.java | 9 --
.../metastorage/server/WatchProcessorTest.java | 5 -
.../placementdriver/AssignmentsTracker.java | 2 +-
.../negotiation/LeaseNegotiator.java | 11 +-
.../SerializerHandlerBenchmarksBase.cs | 17 ++-
.../dotnet/Apache.Ignite.Tests/MetricsTests.cs | 2 +-
.../Proto/ColocationHashTests.cs | 61 ++++++++--
.../Apache.Ignite.Tests/Table/DataStreamerTests.cs | 7 +-
.../Serialization/ObjectSerializerHandlerTests.cs | 15 ++-
.../dotnet/Apache.Ignite.Tests/TestUtils.cs | 16 ++-
.../dotnet/Apache.Ignite/Internal/ClientSocket.cs | 2 +-
.../Proto/BinaryTuple/BinaryTupleBuilder.cs | 125 ++++++++++++--------
.../BinaryTuple/IHashedColumnIndexProvider.cs | 11 +-
.../Apache.Ignite/Internal/Proto/HashUtils.cs | 2 +-
.../Apache.Ignite/Internal/Table/DataStreamer.cs | 2 +-
.../dotnet/Apache.Ignite/Internal/Table/Schema.cs | 9 +-
.../Serialization/IRecordSerializerHandler.cs | 2 +-
.../dotnet/Apache.Ignite/Internal/Table/Table.cs | 15 ++-
.../ignite/internal/BaseIgniteRestartTest.java | 4 +-
.../ItDistributedConfigurationPropertiesTest.java | 39 +++----
.../ItDistributedConfigurationStorageTest.java | 12 +-
.../runner/app/ItIgniteNodeRestartTest.java | 2 +-
.../internal/sql/api/ItSqlAsynchronousApiTest.java | 2 +-
.../internal/sql/api/ItSqlSynchronousApiTest.java | 2 +-
.../internal/sql/engine/ItCreateTableDdlTest.java | 41 ++++++-
.../streamer/ItAbstractDataStreamerTest.java | 1 +
.../org/apache/ignite/internal/app/IgniteImpl.java | 12 +-
.../storage/DistributedConfigurationStorage.java | 7 --
.../storage/ConfigurationStorageTest.java | 12 +-
.../schema/configuration/TableValidatorImpl.java | 2 +-
.../sql/engine/exec/ExecutionServiceImplTest.java | 56 +++++++--
.../internal/table/distributed/TableManager.java | 15 +++
56 files changed, 750 insertions(+), 459 deletions(-)
rename
modules/cli/src/integrationTest/java/org/apache/ignite/internal/cli/commands/{questions
=> }/ItConnectToClusterTestBase.java (90%)
create mode 100644
modules/cli/src/integrationTest/java/org/apache/ignite/internal/cli/commands/connect/ItConnectWithBasicAuthenticationCommandTest.java
rename modules/configuration/src/{main =>
testFixtures}/java/org/apache/ignite/internal/configuration/notifications/ConfigurationStorageRevisionListener.java
(96%)
rename modules/configuration/src/{main =>
testFixtures}/java/org/apache/ignite/internal/configuration/notifications/ConfigurationStorageRevisionListenerHolder.java
(100%)