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 2022/10/26 07:46:38 UTC

[ignite-3] branch main updated (88c5fa3401 -> 002094da03)

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 88c5fa3401 IGNITE-17260 IgniteTransactions and Transaction interfaces enriched with RO related methods (#1230)
     add 002094da03 IGNITE-17750 .NET: Add Partition Awareness (#1247)

No new revisions were added by this update.

Summary of changes:
 .../compute/ClientComputeExecuteRequest.java       |   4 +-
 .../SerializerHandlerBenchmarksBase.cs             |   8 +-
 .../SerializerHandlerWriteBenchmarks.cs            |   2 +-
 .../dotnet/Apache.Ignite.Tests/.editorconfig       |   2 +
 .../Apache.Ignite.Tests/ClientSocketTests.cs       |   8 +-
 .../dotnet/Apache.Ignite.Tests/FakeServer.cs       | 161 +++++++----
 .../Apache.Ignite.Tests/PartitionAwarenessTests.cs | 321 +++++++++++++++++++++
 .../dotnet/Apache.Ignite.Tests/RetryPolicyTests.cs |   4 +-
 .../Serialization/ObjectSerializerHandlerTests.cs  |   6 +-
 .../platforms/dotnet/Apache.Ignite.sln.DotSettings |   1 +
 .../Apache.Ignite/Internal/ClientFailoverSocket.cs | 139 +++++----
 .../dotnet/Apache.Ignite/Internal/ClientSocket.cs  |  27 +-
 .../Apache.Ignite/Internal/Compute/Compute.cs      |  38 +--
 .../Proto/BinaryTuple/BinaryTupleBuilder.cs        |  27 +-
 .../BinaryTuple/IHashedColumnIndexProvider.cs}     |  22 +-
 .../Apache.Ignite/Internal/Proto/ClientOp.cs       |   5 +-
 .../Internal/Proto/ClientOpExtensions.cs           |   1 +
 .../Apache.Ignite/Internal/Proto/HashUtils.cs      |  94 ++++++
 .../Proto/PreferredNode.cs}                        |  47 +--
 .../Internal/Proto/ResponseFlags.cs}               |  27 +-
 .../dotnet/Apache.Ignite/Internal/Table/Column.cs  |   2 +-
 .../Apache.Ignite/Internal/Table/RecordView.cs     |  51 +++-
 .../dotnet/Apache.Ignite/Internal/Table/Schema.cs  |   8 +-
 .../Serialization/IRecordSerializerHandler.cs      |  43 ++-
 .../Table/Serialization/ObjectSerializerHandler.cs |  32 +-
 .../Table/Serialization/RecordSerializer.cs        |  33 ++-
 .../Serialization/TuplePairSerializerHandler.cs    |  48 ++-
 .../Table/Serialization/TupleSerializerHandler.cs  |  41 +--
 .../dotnet/Apache.Ignite/Internal/Table/Table.cs   |  88 +++++-
 29 files changed, 952 insertions(+), 338 deletions(-)
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Tests/PartitionAwarenessTests.cs
 copy modules/platforms/dotnet/Apache.Ignite/Internal/{Common/IsExternalInit.cs => Proto/BinaryTuple/IHashedColumnIndexProvider.cs} (63%)
 create mode 100644 modules/platforms/dotnet/Apache.Ignite/Internal/Proto/HashUtils.cs
 copy modules/platforms/dotnet/Apache.Ignite/{IRetryPolicyContext.cs => Internal/Proto/PreferredNode.cs} (51%)
 copy modules/platforms/dotnet/{Apache.Ignite.Tests/Table/Poco.cs => Apache.Ignite/Internal/Proto/ResponseFlags.cs} (69%)