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 b0752ee1619 AOT tests done
b0752ee1619 is described below
commit b0752ee1619e64d9f9dcbaf8baf59811a3cfad69
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed Dec 24 16:22:01 2025 +0200
AOT tests done
---
.../dotnet/Apache.Ignite.Tests.Aot/Sql/SqlTests.cs | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/modules/platforms/dotnet/Apache.Ignite.Tests.Aot/Sql/SqlTests.cs
b/modules/platforms/dotnet/Apache.Ignite.Tests.Aot/Sql/SqlTests.cs
index 78909a099de..729a83de304 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Tests.Aot/Sql/SqlTests.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Tests.Aot/Sql/SqlTests.cs
@@ -89,6 +89,7 @@ public class SqlTests(IIgniteClient client)
{
var table = await
client.Tables.GetTableAsync(TestTables.TableAllColumnsSqlName);
var view = table!.GetRecordView(new PocoAllColumnsSqlMapper());
+
var poco = GetPoco();
await view.UpsertAsync(null, poco);
@@ -102,7 +103,21 @@ public class SqlTests(IIgniteClient client)
List<PocoAllColumnsSql> rows = await resultSet.ToListAsync();
PocoAllColumnsSql row = rows.Single();
- Assert.AreEqual(poco, row);
+ Assert.AreEqual(poco.Key, row.Key);
+ Assert.AreEqual(poco.Str, row.Str);
+ Assert.AreEqual(poco.Int8, row.Int8);
+ Assert.AreEqual(poco.Int16, row.Int16);
+ Assert.AreEqual(poco.Int32, row.Int32);
+ Assert.AreEqual(poco.Int64, row.Int64);
+ Assert.AreEqual(poco.Float, row.Float);
+ Assert.AreEqual(poco.Double, row.Double);
+ Assert.AreEqual(poco.Uuid, row.Uuid);
+ Assert.AreEqual(poco.Decimal, row.Decimal);
+ Assert.AreEqual(poco.Date, row.Date);
+ Assert.AreEqual(poco.Time, row.Time);
+ Assert.AreEqual(poco.DateTime, row.DateTime);
+ Assert.AreEqual(poco.Timestamp, row.Timestamp);
+ Assert.AreEqual(poco.Blob, row.Blob);
}
[UsedImplicitly]