This is an automated email from the ASF dual-hosted git repository. agura pushed a change to branch ignite-14389 in repository https://gitbox.apache.org/repos/asf/ignite-3.git.
discard 4865735 WIP discard 189b625 IGNITE-14389 Implemented cursor for ranges and watches. discard cfc782b IGNITE-14389 Added putAll and removeAll. Started cursor management: ranges and watches (WIP) discard 2277cf7 IGNITE-14389 putAll initial (WIP) discard e996735 IGNITE-14389 getAll and tests (WIP) discard c025c87 IGNITE-14389 Added get and do smth semantic discard 65f2ed2 IGNITE-14398: Meta storage: added update counter discard 5f4ef07 IGNITE-14389 Meta storage: in-memory implementation WIP add 8bec45a IGNITE-14682 Fix sending messages from a node to itself (#119) add 53bd906 IGNITE-14557: Improve row layout. (#100) add aa79d37 IGNITE-13670: Skip writing null-map and varlen table when possible. (#106) new 71f810f IGNITE-14389 Meta storage: in-memory implementation WIP new a1b451d IGNITE-14398: Meta storage: added update counter new 72859a8 IGNITE-14389 Added get and do smth semantic new 4dfcc43 IGNITE-14389 getAll and tests (WIP) new 1bd716b IGNITE-14389 putAll initial (WIP) new d15ac8f IGNITE-14389 Added putAll and removeAll. Started cursor management: ranges and watches (WIP) new ec45fe0 IGNITE-14389 Implemented cursor for ranges and watches. new a858e14 WIP new fd1ae78 IGNITE-14389 Fixed WatchAggregatorTest 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 (4865735) \ N -- N -- N refs/heads/ignite-14389 (fd1ae78) 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. The 9 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../internal/metastorage/WatchAggregatorTest.java | 15 +- .../org/apache/ignite/network/TestMessage.java | 5 + .../scalecube/ITScaleCubeNetworkMessagingTest.java | 83 ++- .../scalecube/DelegatingTransportFactory.java | 99 ++++ .../scalecube/ScaleCubeClusterServiceFactory.java | 9 +- .../scalecube/ScaleCubeTopologyService.java | 11 +- .../apache/ignite/internal/schema/BinaryRow.java | 25 +- .../ignite/internal/schema/ByteBufferRow.java | 2 +- .../org/apache/ignite/internal/schema/Columns.java | 21 +- .../ignite/internal/schema/ExpandableByteBuf.java | 4 +- .../org/apache/ignite/internal/schema/README.md | 16 +- .../org/apache/ignite/internal/schema/Row.java | 138 +++-- .../ignite/internal/schema/RowAssembler.java | 114 ++-- .../marshaller/asm/AsmSerializerGenerator.java | 6 +- .../marshaller/reflection/JavaSerializer.java | 24 +- .../apache/ignite/internal/schema/ColumnsTest.java | 14 +- .../ignite/internal/schema/RowAssemblerTest.java | 630 +++++++++++++++++++++ .../org/apache/ignite/internal/schema/RowTest.java | 2 +- .../ignite/internal/table/TupleMarshallerImpl.java | 115 +++- .../ignite/{ => internal}/table/Example.java | 9 +- .../{ => internal}/table/KVViewOperationsTest.java | 9 +- .../table/TableBinaryViewOperationsTest.java | 9 +- .../table/impl/DummyInternalTableImpl.java | 2 +- .../table/impl/DummySchemaManagerImpl.java | 2 +- 24 files changed, 1192 insertions(+), 172 deletions(-) create mode 100644 modules/network/src/main/java/org/apache/ignite/network/scalecube/DelegatingTransportFactory.java create mode 100644 modules/schema/src/test/java/org/apache/ignite/internal/schema/RowAssemblerTest.java rename modules/table/src/test/java/org/apache/ignite/{ => internal}/table/Example.java (98%) rename modules/table/src/test/java/org/apache/ignite/{ => internal}/table/KVViewOperationsTest.java (98%) rename modules/table/src/test/java/org/apache/ignite/{ => internal}/table/TableBinaryViewOperationsTest.java (97%) rename modules/table/src/test/java/org/apache/ignite/{ => internal}/table/impl/DummyInternalTableImpl.java (99%) rename modules/table/src/test/java/org/apache/ignite/{ => internal}/table/impl/DummySchemaManagerImpl.java (97%)