This is an automated email from the ASF dual-hosted git repository.
amashenkov pushed a change to branch ignite-20105
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
from c95e9d3651 NativeTypes use precision and scale from Catalog.
add 3e15298821 IGNITE-20148 Explicit writeIntent cleanup on primary
replica (#2405)
add 86b9b2a1dd IGNITE-19835 Java client: Reject POJOs and Tuples with
unmapped fields (#2401)
add c24e6e0497 IGNITE-20146 Add improvements to the catalog associated
with the DistributionZone (#2403)
new 532a495e11 Merge branch 'main' into ignite-20105
The 1 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:
.../org/apache/ignite/table/mapper/PojoMapper.java | 8 +
.../apache/ignite/table/mapper/PojoMapperImpl.java | 7 +
modules/catalog/build.gradle | 6 +
.../ignite/internal/catalog/CatalogManager.java | 8 +-
.../internal/catalog/CatalogManagerImpl.java | 82 ++--
.../catalog/CatalogParamsValidationUtils.java | 181 +++++++
.../catalog/CatalogValidationException.java} | 41 +-
.../internal/catalog/commands/AlterZoneParams.java | 20 +
.../internal/catalog/commands/CatalogUtils.java | 29 ++
.../catalog/commands/CreateZoneParams.java | 49 +-
...DropIndexParams.java => DataStorageParams.java} | 64 ++-
.../internal/catalog/commands/DropZoneParams.java | 41 +-
.../descriptors/CatalogDataStorageDescriptor.java | 1 +
.../internal/catalog/BaseCatalogManagerTest.java | 84 ++++
.../internal/catalog/CatalogManagerSelfTest.java | 104 ++--
.../catalog/CatalogManagerValidationTest.java | 541 +++++++++++++++++++++
.../ignite/internal/client/TcpClientChannel.java | 2 +-
.../internal/client/table/ClientKeyValueView.java | 4 +-
.../ignite/internal/client/table/ClientSchema.java | 6 +-
.../client/table/ClientTupleSerializer.java | 76 ++-
.../ignite/client/AbstractClientTableTest.java | 114 ++++-
.../ignite/client/ClientKeyValueViewTest.java | 85 ++--
.../apache/ignite/client/ClientRecordViewTest.java | 37 +-
.../org/apache/ignite/client/DataStreamerTest.java | 12 +-
.../ignite/client/PartitionAwarenessTest.java | 35 +-
.../ignite/lang/IgniteInternalException.java | 13 +
.../ignite/internal/marshaller/Marshaller.java | 47 +-
.../ItThinClientMarshallingEmbeddedTest.java} | 10 +-
.../app/client/ItThinClientMarshallingTest.java | 126 +++++
.../ItThinClientSchemaSynchronizationTest.java | 16 +-
.../runner/app/client/ItThinClientSqlTest.java | 8 +-
.../streamer/ItAbstractDataStreamerTest.java | 31 +-
.../asm/ObjectMarshallerCodeGenerator.java | 12 +
.../marshaller/reflection/KvMarshallerImpl.java | 4 +-
.../schema/marshaller/reflection/Marshaller.java | 41 +-
.../reflection/RecordMarshallerImpl.java | 6 +-
.../schema/marshaller/KvMarshallerTest.java | 140 +++---
.../schema/marshaller/RecordMarshallerTest.java | 78 ++-
...TestOuterObject.java => TestBitmaskObject.java} | 34 +-
...tSimpleObject.java => TestSimpleObjectKey.java} | 20 +-
...tSimpleObject.java => TestSimpleObjectVal.java} | 18 +-
.../engine/exec/ddl/DdlCommandHandlerWrapper.java | 8 +-
.../storage/impl/TestMvPartitionStorage.java | 10 +-
.../schema/marshaller/TupleMarshallerImpl.java | 4 +-
.../table/distributed/StorageUpdateHandler.java | 27 +-
.../replicator/PartitionReplicaListener.java | 53 +-
46 files changed, 1754 insertions(+), 589 deletions(-)
create mode 100644
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/CatalogParamsValidationUtils.java
copy
modules/{page-memory/src/main/java/org/apache/ignite/internal/pagememory/mem/IgniteOutOfMemoryException.java
=>
catalog/src/main/java/org/apache/ignite/internal/catalog/CatalogValidationException.java}
(50%)
copy
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/commands/{DropIndexParams.java
=> DataStorageParams.java} (54%)
create mode 100644
modules/catalog/src/test/java/org/apache/ignite/internal/catalog/BaseCatalogManagerTest.java
create mode 100644
modules/catalog/src/test/java/org/apache/ignite/internal/catalog/CatalogManagerValidationTest.java
copy
modules/runner/src/integrationTest/java/org/apache/ignite/internal/{streamer/ItServerDataStreamerTest.java
=> runner/app/client/ItThinClientMarshallingEmbeddedTest.java} (76%)
create mode 100644
modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/client/ItThinClientMarshallingTest.java
copy
modules/schema/src/testFixtures/java/org/apache/ignite/internal/schema/testobjects/{TestOuterObject.java
=> TestBitmaskObject.java} (67%)
copy
modules/schema/src/testFixtures/java/org/apache/ignite/internal/schema/testobjects/{TestSimpleObject.java
=> TestSimpleObjectKey.java} (72%)
copy
modules/schema/src/testFixtures/java/org/apache/ignite/internal/schema/testobjects/{TestSimpleObject.java
=> TestSimpleObjectVal.java} (78%)