You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pt...@apache.org on 2023/08/04 06:33:13 UTC

[ignite-3] branch main updated (3e15298821 -> 86b9b2a1dd)

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

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


    from 3e15298821 IGNITE-20148 Explicit writeIntent cleanup on primary replica (#2405)
     add 86b9b2a1dd IGNITE-19835 Java client: Reject POJOs and Tuples with unmapped fields  (#2401)

No new revisions were added by this update.

Summary of changes:
 .../org/apache/ignite/table/mapper/PojoMapper.java |   8 ++
 .../apache/ignite/table/mapper/PojoMapperImpl.java |   7 ++
 .../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/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 +--
 .../schema/marshaller/TupleMarshallerImpl.java     |   4 +-
 27 files changed, 647 insertions(+), 334 deletions(-)
 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%)