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 358bfc59911dbc5ef131175909e2d24b9e824195
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Tue Dec 23 16:25:21 2025 +0200

    wip
---
 .../dotnet/Apache.Ignite.Tests/Sql/SqlResultSetObjectMappingTests.cs   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/modules/platforms/dotnet/Apache.Ignite.Tests/Sql/SqlResultSetObjectMappingTests.cs
 
b/modules/platforms/dotnet/Apache.Ignite.Tests/Sql/SqlResultSetObjectMappingTests.cs
index cf4a0d0f244..25e739e2db9 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.Tests/Sql/SqlResultSetObjectMappingTests.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.Tests/Sql/SqlResultSetObjectMappingTests.cs
@@ -20,6 +20,7 @@ namespace Apache.Ignite.Tests.Sql;
 using System;
 using System.ComponentModel.DataAnnotations.Schema;
 using System.Linq;
+using System.Threading;
 using System.Threading.Tasks;
 using Common.Table;
 using Ignite.Sql;
@@ -92,7 +93,7 @@ public class SqlResultSetObjectMappingTests : IgniteTestsBase
     public async Task TestSelectAllColumns([Values(true, false)] bool 
withMapper)
     {
         var resultSet = withMapper
-            ? await Client.Sql.ExecuteAsync<PocoAllColumnsSqlNullable>(null, 
"select * from TBL_ALL_COLUMNS_SQL order by 1", new 
PocoAllColumnsSqlNullableMapper())
+            ? await Client.Sql.ExecuteAsync(null, new 
PocoAllColumnsSqlNullableMapper(), "select * from TBL_ALL_COLUMNS_SQL order by 
1", CancellationToken.None)
             : await Client.Sql.ExecuteAsync<PocoAllColumnsSqlNullable>(null, 
"select * from TBL_ALL_COLUMNS_SQL order by 1");
 
         var rows = await resultSet.ToListAsync();

Reply via email to