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

commit 5253b9aeda164399e23257e7bf5734f1616cf52b
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed Dec 24 12:23:20 2025 +0200

    Revert "wip BasicMappers"
    
    This reverts commit 3091ce2484c4249ea65323a0ab069c8fae3356d3.
---
 modules/platforms/dotnet/Apache.Ignite/Compute/JobTarget.cs | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/modules/platforms/dotnet/Apache.Ignite/Compute/JobTarget.cs 
b/modules/platforms/dotnet/Apache.Ignite/Compute/JobTarget.cs
index e4c0418cdd4..37cc3c2dd01 100644
--- a/modules/platforms/dotnet/Apache.Ignite/Compute/JobTarget.cs
+++ b/modules/platforms/dotnet/Apache.Ignite/Compute/JobTarget.cs
@@ -79,10 +79,7 @@ public static class JobTarget
     {
         IgniteArgumentCheck.NotNull(key);
 
-        // If a mapper is available for the key type, use it to avoid 
reflection later.
-        IMapper<TKey>? mapper = BasicMappers.TryGet<TKey>();
-
-        return new ColocatedTarget<TKey>(tableName, key, mapper);
+        return new ColocatedTarget<TKey>(tableName, key, null);
     }
 
     /// <summary>

Reply via email to