This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a commit to branch ignite-27278
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/ignite-27278 by this push:
new 9f2c534c6e1 wip PA tests
9f2c534c6e1 is described below
commit 9f2c534c6e1260377b5bd01a0a7a5e71d4f1214f
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed Dec 24 14:07:56 2025 +0200
wip PA tests
---
.../dotnet/Apache.Ignite.Tests/PartitionAwarenessTests.cs | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git
a/modules/platforms/dotnet/Apache.Ignite.Tests/PartitionAwarenessTests.cs
b/modules/platforms/dotnet/Apache.Ignite.Tests/PartitionAwarenessTests.cs
index 6f6d2e39377..fab3dc9fd83 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Tests/PartitionAwarenessTests.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Tests/PartitionAwarenessTests.cs
@@ -343,10 +343,14 @@ public class PartitionAwarenessTests
}
[Test]
- public async Task TestCustomColocationKey()
+ public async Task TestCustomColocationKey([Values(true, false)] bool
withMapper)
{
using var client = await GetClient();
- var view = (await
client.Tables.GetTableAsync(FakeServer.CustomColocationKeyTableName))!.GetRecordView<CompositeKey>();
+
+ var table = await
client.Tables.GetTableAsync(FakeServer.CustomColocationKeyTableName);
+ var view = withMapper
+ ? table!.GetRecordView(new CompositeKeyMapper())
+ : table!.GetRecordView<CompositeKey>();
// Warm up.
await view.UpsertAsync(null, new CompositeKey("1", Guid.Empty));