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 2021/08/31 14:16:37 UTC

[ignite-3] branch ignite-15382 updated (ae35129 -> ce6085d)

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

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


 discard ae35129  Fix imports.
 discard 8fc6909  Move SchemaBuilders to ignite-api.
 discard a18dfb1  Move TupleImpl to table module.
    omit e3e2564  Fix capacity passing
    omit 13dd56c  Fix styles and javadocs.
     add 42a5d78  IGNITE-15313 shutdown Executors correctly in JRaft codebase. Fixes #288
     add e7d7ea6  IGNITE-15253 Tuple API improvement (#282)
     add fbf55e2  IGNITE-15163 Support BitSet, Number, Decimal and Temporal types (#296)
     add 8d1e4fa  Merge branch 'main' into qqq
     add 26a82d9  Move TupleImpl to table module.
     add 96cf0b7  Move SchemaBuilders to ignite-api.
     add f0af348  Fix imports.
     add ce6085d  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   (ae35129)
            \
             N -- N -- N   refs/heads/ignite-15382 (ce6085d)

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:
 .../apache/ignite/client/proto/ClientDataType.java |   3 +
 .../ignite/client/proto/ClientMessagePacker.java   | 137 ++++++++++++++---
 .../ignite/client/proto/ClientMessageUnpacker.java | 131 ++++++++++++++--
 .../ignite/client/proto/ClientMsgPackType.java     |   6 +
 .../proto/ClientMessagePackerUnpackerTest.java     | 166 +++++++++++++++++++++
 .../handler/requests/table/ClientTableCommon.java  |   8 +
 .../tostring/IgniteToStringBuilderSelfTest.java    |   6 +-
 .../client/service/impl/RaftGroupServiceImpl.java  |   3 +-
 .../ignite/raft/jraft/core/ITCliServiceTest.java   |   8 +-
 .../apache/ignite/raft/jraft/core/ITNodeTest.java  |  46 ++++--
 .../apache/ignite/raft/server/CounterListener.java |   7 +-
 .../internal/raft/server/impl/JRaftServerImpl.java |  23 ++-
 .../raft/jraft/rpc/impl/IgniteRpcServer.java       |  11 +-
 .../raft/jraft/storage/impl/RocksDBLogStorage.java |   6 +-
 .../jraft/closure/SynchronizedClosureTest.java     |  40 ++---
 .../ignite/raft/jraft/core/BallotBoxTest.java      |   7 +-
 .../ignite/raft/jraft/core/FSMCallerTest.java      |   8 +-
 .../ignite/raft/jraft/core/IteratorImplTest.java   |  13 +-
 .../raft/jraft/core/ReadOnlyServiceTest.java       |  21 ++-
 .../ignite/raft/jraft/core/ReplicatorTest.java     |   7 +-
 .../apache/ignite/raft/jraft/core/TestCluster.java |  35 ++++-
 .../jraft/entity/codec/LogEntryCodecPerfTest.java  |   9 +-
 .../raft/jraft/rpc/AbstractClientServiceTest.java  |  12 +-
 .../ignite/raft/jraft/rpc/IgniteRpcTest.java       |  21 ++-
 .../ignite/raft/jraft/rpc/TestIgniteRpcServer.java |  27 +---
 .../ignite/raft/jraft/rpc/impl/FutureTest.java     |  75 ++++++----
 .../core/AppendEntriesRequestProcessorTest.java    |   3 +-
 .../impl/core/BaseNodeRequestProcessorTest.java    |  19 ++-
 .../raft/jraft/storage/SnapshotExecutorTest.java   |  16 +-
 .../raft/jraft/storage/impl/LogManagerTest.java    |   8 +-
 .../storage/snapshot/remote/CopySessionTest.java   |  54 +++----
 .../raft/jraft/util/ByteBufferCollectorTest.java   |   7 +-
 .../ignite/raft/jraft/util/CountDownEventTest.java |  14 +-
 .../jraft/util/RecyclableByteBufferListTest.java   |   7 +-
 .../ignite/raft/jraft/util/RecyclersTest.java      |  21 ++-
 .../ignite/raft/jraft/util/ThreadIdTest.java       |  70 ++++-----
 .../apache/ignite/raft/jraft/util/UtilsTest.java   |  10 +-
 .../LongHeldDetectingReadWriteLockTest.java        | 146 +++++++++++-------
 modules/schema/pom.xml                             |   7 +
 .../apache/ignite/internal/schema/SchemaAware.java |   6 +-
 .../schema/builder/SchemaBuilderFactoryImpl.java   |   1 -
 .../apache/ignite/internal/schema/TestUtils.java   |  10 +-
 modules/table/pom.xml                              |   7 +
 .../ignite/{ => internal}/table/TupleImplTest.java |   4 +-
 .../internal/tx/AbstractLockManagerTest.java       |  26 ++--
 45 files changed, 963 insertions(+), 309 deletions(-)
 rename modules/table/src/test/java/org/apache/ignite/{ => internal}/table/TupleImplTest.java (98%)