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

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


    from beb6dc87a52 Merge remote-tracking branch 'origin/main' into colocation
     add 6bf133d8598 IGNITE-24258 .NET: Add QualifiedName API (#5565)
     add 708aa899dfc IGNITE-25020 Fix NPE in TableManagerTest when colocation 
is enabled (#5570)
     add e53c2b4be69 Merge remote-tracking branch 'origin/main' into colocation

No new revisions were added by this update.

Summary of changes:
 .../apache/ignite/lang/util/IgniteNameUtils.java   |   4 +-
 .../org/apache/ignite/table/QualifiedName.java     |   2 +-
 .../IgniteDistributedCacheTests.cs                 |   9 +-
 .../Apache.Ignite.Tests/Compute/ComputeTests.cs    |   9 +-
 .../dotnet/Apache.Ignite.Tests/FakeServer.cs       |   6 +-
 .../dotnet/Apache.Ignite.Tests/IgniteProxyTests.cs |   2 +-
 .../dotnet/Apache.Ignite.Tests/MetricsTests.cs     |   2 +-
 .../Apache.Ignite.Tests/ProjectFilesTests.cs       |   2 +-
 .../Proto/ColocationHashTests.cs                   |   1 -
 .../dotnet/Apache.Ignite.Tests/RetryPolicyTests.cs |   2 +-
 .../Table/IgniteNameUtilsTests.cs                  | 104 ++++++++++
 .../Table/KeyColumnOrderTests.cs                   |   3 +-
 .../Table/KeyValueViewBinaryTests.cs               |   2 +-
 .../Table/KeyValueViewPocoTests.cs                 |   2 +-
 .../Table/KeyValueViewPrimitiveTests.cs            |   2 +-
 .../Table/QualifiedNameTests.cs                    | 193 ++++++++++++++++++
 .../Table/RecordViewBinaryTests.cs                 |   2 +-
 .../Table/RecordViewPocoTests.cs                   |   3 +-
 .../Table/SchemaSynchronizationTest.cs             |   2 +-
 .../Table/SchemaValidationTest.cs                  |   3 +-
 .../Apache.Ignite.Tests/Table/TablesTests.cs       |  43 +++-
 .../dotnet/Apache.Ignite/ClientOperationType.cs    |   2 +-
 .../dotnet/Apache.Ignite/Compute/JobTarget.cs      |  17 +-
 .../Apache.Ignite/Internal/ClientFailoverSocket.cs |  37 +++-
 .../dotnet/Apache.Ignite/Internal/ClientSocket.cs  |   9 +-
 .../Apache.Ignite/Internal/Compute/Compute.cs      |   8 +-
 .../Apache.Ignite/Internal/ConnectionContext.cs    |  13 +-
 .../Internal/Linq/ExpressionWalker.cs              |   2 +-
 .../Internal/Linq/IIgniteQueryableInternal.cs      |   3 +-
 .../Internal/Linq/IgniteQueryProvider.cs           |   5 +-
 .../Apache.Ignite/Internal/Linq/IgniteQueryable.cs |   3 +-
 .../Apache.Ignite/Internal/Proto/ClientOp.cs       |   8 +-
 .../Internal/Proto/ClientOpExtensions.cs           |   4 +-
 .../Proto/ProtocolBitmaskFeature.cs}               |  21 +-
 .../Internal/Table/IgniteNameUtils.cs              | 227 +++++++++++++++++++++
 .../Apache.Ignite/Internal/Table/KeyValueView.cs   |   2 +-
 .../Apache.Ignite/Internal/Table/RecordView.cs     |   2 +-
 .../dotnet/Apache.Ignite/Internal/Table/Table.cs   |  11 +-
 .../dotnet/Apache.Ignite/Internal/Table/Tables.cs  | 107 +++++++---
 .../platforms/dotnet/Apache.Ignite/Table/ITable.cs |   5 +
 .../dotnet/Apache.Ignite/Table/ITables.cs          |   7 +
 .../dotnet/Apache.Ignite/Table/QualifiedName.cs    | 151 ++++++++++++++
 .../table/distributed/TableManagerTest.java        |   2 +
 43 files changed, 942 insertions(+), 102 deletions(-)
 create mode 100644 
modules/platforms/dotnet/Apache.Ignite.Tests/Table/IgniteNameUtilsTests.cs
 create mode 100644 
modules/platforms/dotnet/Apache.Ignite.Tests/Table/QualifiedNameTests.cs
 copy modules/platforms/dotnet/Apache.Ignite/{IAuthenticator.cs => 
Internal/Proto/ProtocolBitmaskFeature.cs} (74%)
 create mode 100644 
modules/platforms/dotnet/Apache.Ignite/Internal/Table/IgniteNameUtils.cs
 create mode 100644 
modules/platforms/dotnet/Apache.Ignite/Table/QualifiedName.cs

Reply via email to