This is an automated email from the ASF dual-hosted git repository.
amashenkov pushed a change to branch ignite-14743
in repository https://gitbox.apache.org/repos/asf/ignite-3.git.
omit 5b6a764 Fix dependencies.
omit 86efa28 Styles.
omit d613c99 Minor.
omit 46e8c2a Minor optimization.
omit 83c8897 Add benchmarks
omit c0a24a6 Add benchmark
omit 271e2a4 Minor.
omit 25ff067 Merge branch 'main' into ignite-14743-large-rows
omit 9c8212b Minor.
omit 2f907f0 Fix tests.
omit ed0e78d Add tests for large rows.
omit 0f440a9 Use int vartable offsets.
add d6e1c27 Introduce SortOrder enum for indexed column.
add 84c0c44 Merge branch 'main' into ignite-14732
add af4acf0 Merge branch 'main' into ignite-14732
add 66cd4e9 Minor.
add b0bc9e5 Add tiny,normal,large chunk formats.
add 0e66f15 Merge branch 'main' into gg-14743
add 0d336b6 Optimize serialized row size.
add 87f9fe5 Fix tests.
add 926ef7f Minor.
add 1d9efdd Styles.
add d55c967 Merge branch 'main' into gg-14743
add da99bed Revert to format independent hashcode.
add d1ff1cf Minor.
add d9d414d WIP.
add cdb9015 WIP.
add abcb9e0 Merge branch 'main' into gg-14743
add c913679 WIP.
add 37ca010 Merge branch 'main' into gg-14743
add e5d6b43 WIP. Styles.
add 72975e9 Styles.
add 8ae77cd Minor.
add 9b89a9c Add tests for large rows.
add 4b56527 Minor
add 7402ec6 Styles.
add 6284c34 Minor.
add 28f2f46 Merge branch 'main' into ignite-14743-row-formats
add 0b79ebf Minor.
add 5d201c4 Add benchmarks
add 9ce3e73 Minor.
add 1316302 Fix benchmarks
add 1181d7c Minor optimizations.
add 31caee1 Minor.
add a501142 Fix dependencies.
add 342fc64 Minors.
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 (5b6a764)
\
N -- N -- N refs/heads/ignite-14743 (342fc64)
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/util/{Cursor.java => Constants.java} | 20 +-
.../apache/ignite/internal/schema/BinaryRow.java | 38 +-
.../org/apache/ignite/internal/schema/Column.java | 8 +-
.../org/apache/ignite/internal/schema/Columns.java | 17 +
.../apache/ignite/internal/schema/NativeTypes.java | 1 +
.../schema/builder/SchemaTableBuilderImpl.java | 3 +
.../marshaller/asm/AsmSerializerGenerator.java | 21 +-
.../marshaller/reflection/JavaSerializer.java | 10 +-
.../ignite/internal/schema/row/ChunkFormat.java | 297 ++++++++++++++++
.../ignite/internal/schema/row/ChunkReader.java | 212 ++++++++++++
.../ignite/internal/schema/row/ChunkWriter.java | 272 +++++++++++++++
.../internal/schema/row/ExpandableByteBuf.java | 27 +-
.../org/apache/ignite/internal/schema/row/Row.java | 216 +++---------
.../ignite/internal/schema/row/RowAssembler.java | 381 ++++++++-------------
.../schema/RowAssemblerAdvancedSchemaTest.java | 83 ++---
.../schema/RowAssemblerSimpleSchemaTest.java | 217 ++++++------
.../org/apache/ignite/internal/schema/RowTest.java | 28 +-
.../ignite/distributed/ITDistributedTableTest.java | 4 +-
.../internal/table/ColumnNotFoundException.java | 6 +-
.../internal/table/SchemaMismatchException.java | 6 +-
.../ignite/internal/table/TupleMarshallerImpl.java | 50 +--
.../raft/PartitionCommandListenerTest.java | 6 +-
22 files changed, 1254 insertions(+), 669 deletions(-)
copy modules/core/src/main/java/org/apache/ignite/internal/util/{Cursor.java
=> Constants.java} (67%)
create mode 100644
modules/schema/src/main/java/org/apache/ignite/internal/schema/row/ChunkFormat.java
create mode 100644
modules/schema/src/main/java/org/apache/ignite/internal/schema/row/ChunkReader.java
create mode 100644
modules/schema/src/main/java/org/apache/ignite/internal/schema/row/ChunkWriter.java