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 9b30e441f3c Fix EmitKvPairReader
9b30e441f3c is described below
commit 9b30e441f3c7611ebaf184e5fed3926784db8ac1
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Tue Dec 23 20:40:01 2025 +0200
Fix EmitKvPairReader
---
modules/platforms/dotnet/Apache.Ignite/Internal/Linq/ResultSelector.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/platforms/dotnet/Apache.Ignite/Internal/Linq/ResultSelector.cs
b/modules/platforms/dotnet/Apache.Ignite/Internal/Linq/ResultSelector.cs
index ceed9c24599..d243d4b8925 100644
--- a/modules/platforms/dotnet/Apache.Ignite/Internal/Linq/ResultSelector.cs
+++ b/modules/platforms/dotnet/Apache.Ignite/Internal/Linq/ResultSelector.cs
@@ -281,7 +281,7 @@ internal static class ResultSelector
var method = new DynamicMethod(
name:
$"KvPairFromBinaryTupleReader_{typeof(T).FullName}_{GetNextId()}",
returnType: typeof(T),
- parameterTypes: new[] { typeof(IReadOnlyList<IColumnMetadata>),
typeof(BinaryTupleReader).MakeByRefType() },
+ parameterTypes: [typeof(ResultSetMetadata),
typeof(BinaryTupleReader).MakeByRefType(), typeof(object)],
m: typeof(IIgnite).Module,
skipVisibility: true);