This is an automated email from the ASF dual-hosted git repository.
amashenkov pushed a change to branch ignite-25588
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
discard 28b3708a959 styles
discard 94f39ea76f1 Pass authenticated username for thin and jdbc clients.
discard 7a2afad24c8 Add test for thin and jdbc clients.
discard d48a6ad5434 Add support for CURRENT_USER sql function.
add 4dc19599ef9 IGNITE-26016 Prepare ByteBufferAccessor for external usage
(#6313)
add ffbe25c4659 IGNITE-25922 Fix testHandshakesFailedTimeout flakiness
(#6311)
add 353b0bf9236 IGNITE-25933 Fix
ItAbstractDataStreamerTest.testFailedItems flakiness (#6312)
add 3c7abf3a914 IGNITE-26006 Configuration compatibility. Correctly handle
adding new fields in compatibility test (#6305)
add 72ce8725b6d IGNITE-26024 Reuse allocated DirectMessageWriter instances
(#6317)
add d9e65b3f085 IGNITE-25894 Do not allow MG repair to be run when MG has
majority (#6315)
add d7188c12285 IGNITE-26000 Implement method to get on-disk group IDs in
Raft meta storage (#6308)
add 680e445bb82 IGNITE-25896 Sql. Make root node support project with
duplicate names. (#6304)
add 5bfc8be20e9 IGNITE-26032 .NET: Fix TestUpsertAllMany flakiness (#6320)
add 13e5e63b874 IGNITE-25972 Support error code aliases and deprecation
(#6299)
add 63c2e4c489d IGNITE-25955 Change error name/code used in case of a
server socket BindException (#6322)
add 88020818614 IGNITE-26042 Use boolean property in the compatibility
tests (#6327)
add d29f4c845bf Add support for CURRENT_USER sql function.
add bd744527d80 Add test for thin and jdbc clients.
add 1d4e4a65f6b Pass authenticated username for thin and jdbc clients.
add 097fd79c3d6 Minor
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 (28b3708a959)
\
N -- N -- N refs/heads/ignite-25588 (097fd79c3d6)
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:
.../java/org/apache/ignite/lang/ErrorGroups.java | 8 +-
.../internal/binarytuple/BinaryTupleParser.java | 42 ++-
.../internal/binarytuple/BinaryTupleReader.java | 36 +--
.../ignite/client/handler/ClientHandlerModule.java | 4 +-
.../handler/ClientInboundMessageHandler.java | 10 +-
.../sql/ClientSqlExecuteScriptRequest.java | 9 +-
.../apache/ignite/client/ClientMetricsTest.java | 4 +-
modules/compatibility-tests/build.gradle | 15 +-
.../ignite/internal/CompatibilityTestBase.java | 15 +-
.../error/code/generators/CppGenerator.java | 16 +-
.../error/code/generators/CsharpGenerator.java | 16 +
.../code/processor/ErrorCodeGroupDescriptor.java | 14 +
.../code/processor/ErrorCodeGroupProcessor.java | 42 ++-
.../ignite/jdbc/ItJdbcConnectionSelfTest.java | 3 +-
.../ignite/internal/network/netty/NettyServer.java | 4 +-
.../internal/network/netty/OutboundEncoder.java | 36 ++-
modules/platforms/cpp/ignite/common/error_codes.h | 3 +-
modules/platforms/cpp/ignite/odbc/common_types.cpp | 2 +-
.../dotnet/Apache.Ignite.Tests/ErrorGroupTests.cs | 3 +-
.../Table/RecordViewBinaryTests.cs | 2 +-
.../platforms/dotnet/Apache.Ignite/ErrorCodes.g.cs | 8 +-
.../apache/ignite/internal/raft/RaftNodeId.java | 22 +-
.../ignite/internal/raft/StoredRaftNodeId.java} | 39 ++-
...tDestructorTest.java => ItJraftServerTest.java} | 56 +++-
.../ignite/raft/server/JraftAbstractTest.java | 2 +-
.../server/impl/GroupStoragesContextResolver.java | 10 +
.../internal/raft/server/impl/JraftServerImpl.java | 40 ++-
.../app/client/ItThinClientAuthenticationTest.java | 27 +-
.../runner/app/client/ItThinClientSqlTest.java | 16 +-
.../streamer/ItAbstractDataStreamerTest.java | 27 +-
.../ConfigurationCompatibilityTest.java | 27 +-
.../GenerateConfigurationSnapshot.java | 54 ++++
.../compatibility/framework/ConfigNode.java | 109 ++++++-
.../framework/ConfigNodeSerializer.java | 7 +-
.../framework/ConfigurationTreeComparator.java | 335 +++++++++++++--------
.../ConfigurationTreeComparatorSelfTest.java | 167 ++++++++--
.../compatibility/configuration/snapshot.bin | Bin 4039 -> 4067 bytes
.../schema/BinaryTupleComparatorUtils.java | 124 ++++++--
.../internal/schema/UnsafeByteBufferAccessor.java | 5 +-
.../ignite/internal/sql/api/ItCommonApiTest.java | 15 +
.../internal/sql/engine/ItSqlOperatorsTest.java | 19 ++
.../ignite/internal/sql/api/IgniteSqlImpl.java | 4 +-
.../sql/engine/exec/ExecutionServiceImpl.java | 6 +-
.../sql/engine/exec/fsm/QueryExecutor.java | 5 +
.../sql/engine/message/QueryStartRequest.java | 5 +
.../internal/sql/engine/prepare/PlannerHelper.java | 10 +-
.../disaster/system/ItCmgDisasterRecoveryTest.java | 17 +-
.../ItMetastorageGroupDisasterRecoveryTest.java | 18 ++
.../system/SystemDisasterRecoveryManagerImpl.java | 31 +-
.../SystemDisasterRecoveryManagerImplTest.java | 74 +++--
50 files changed, 1181 insertions(+), 382 deletions(-)
copy
modules/{compute/src/jobs/java/org/apache/ignite/internal/compute/Pojo.java =>
raft-api/src/main/java/org/apache/ignite/internal/raft/StoredRaftNodeId.java}
(60%)
rename
modules/raft/src/integrationTest/java/org/apache/ignite/raft/server/{ItJraftDestructorTest.java
=> ItJraftServerTest.java} (69%)
create mode 100644
modules/runner/src/test/java/org/apache/ignite/internal/configuration/compatibility/GenerateConfigurationSnapshot.java