This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
from 26904f638f7 IGNITE-23457 Sql. Coordinator failed to send close message
after query cancellation (#7194)
add c00c32776dc IGNITE-21099 .NET: Ensure AOT compatibility (#7217)
No new revisions were added by this update.
Summary of changes:
.../platform_tests/PlatformDotnetTestsLinux.kt | 15 +-
.../Apache.Extensions.Caching.Ignite.csproj | 2 +
.../.editorconfig | 0
.../Apache.Ignite.Tests.Aot.csproj | 25 ++++
.../dotnet/Apache.Ignite.Tests.Aot/Assert.cs | 47 ++++++
.../Compute/ComputeTests.cs | 89 +++++++++++
.../dotnet/Apache.Ignite.Tests.Aot/Program.cs | 48 ++++++
.../dotnet/Apache.Ignite.Tests.Aot/README.md | 14 ++
.../dotnet/Apache.Ignite.Tests.Aot/Sql/SqlTests.cs | 145 ++++++++++++++++++
.../Apache.Ignite.Tests.Aot/Table/TableTests.cs | 162 +++++++++++++++++++++
.../dotnet/Apache.Ignite.Tests.Aot/TestRunner.cs | 56 +++++++
.../Transactions/TransactionsTests.cs | 68 +++++++++
.../Compute/TestCases.cs | 4 +-
.../Apache.Ignite.Tests.Common/JavaServer.cs | 10 +-
.../Table/PocoAllColumnsSqlMapper.cs | 6 +-
.../Apache.Ignite.Tests/Compute/ComputeTests.cs | 1 +
.../dotnet/Apache.Ignite.Tests/IgniteTestsBase.cs | 2 +
modules/platforms/dotnet/Apache.Ignite.sln | 6 +
.../dotnet/Apache.Ignite/Apache.Ignite.csproj | 3 +
.../Apache.Ignite/IgniteClientConfiguration.cs | 8 +-
.../Internal/Buffers/ByteArrayPool.cs | 23 ++-
.../Apache.Ignite/Internal/ClientSocket.Server.cs | 8 +
.../Apache.Ignite/Internal/Compute/Compute.cs | 16 +-
.../Compute/Executor/ComputeJobExecutor.cs | 7 +
.../Compute/Executor/DeploymentUnitLoader.cs | 3 +
.../Internal/Compute/Executor/JobLoadContext.cs | 13 +-
.../Compute/Executor/JobLoadContextCache.cs | 1 +
.../Internal/Linq/EnumerableHelper.cs | 57 --------
.../Internal/Linq/IgniteQueryExecutor.cs | 6 +
.../Internal/Linq/IgniteQueryExpressionVisitor.cs | 2 +
.../Internal/Linq/IgniteQueryModelVisitor.cs | 1 +
.../Internal/Linq/IgniteQueryProvider.cs | 2 +
.../Apache.Ignite/Internal/Linq/IgniteQueryable.cs | 2 +
.../Apache.Ignite/Internal/Linq/MethodVisitor.cs | 1 +
.../Apache.Ignite/Internal/Linq/ResultSelector.cs | 2 +
.../Internal/Sql/ColumnTypeExtensions.cs | 2 +
.../dotnet/Apache.Ignite/Internal/Sql/Sql.cs | 4 +
.../Apache.Ignite/Internal/Table/KeyValueView.cs | 2 +
.../Internal/Table/PartitionManager.cs | 1 +
.../Apache.Ignite/Internal/Table/RecordView.cs | 1 +
.../Table/Serialization/BinaryTupleMethods.cs | 2 +
.../Table/Serialization/ILGeneratorExtensions.cs | 2 +
.../Table/Serialization/ObjectSerializerHandler.cs | 2 +
.../Table/Serialization/ReflectionUtils.cs | 8 +
.../StreamerReceiverJob.cs | 7 +-
.../dotnet/Apache.Ignite/Internal/Table/Table.cs | 3 +
.../Apache.Ignite/Marshalling/JsonMarshaller.cs | 3 +
modules/platforms/dotnet/Apache.Ignite/Sql/ISql.cs | 4 +
.../dotnet/Apache.Ignite/Sql/IgniteDbCommand.cs | 2 +-
.../dotnet/Apache.Ignite/Sql/IgniteDbDataReader.cs | 2 +
.../dotnet/Apache.Ignite/Table/IKeyValueView.cs | 3 +
.../Apache.Ignite/Table/IPartitionManager.cs | 3 +
.../dotnet/Apache.Ignite/Table/IRecordView.cs | 3 +
.../platforms/dotnet/Apache.Ignite/Table/ITable.cs | 4 +
54 files changed, 832 insertions(+), 81 deletions(-)
copy modules/platforms/dotnet/{Apache.Ignite.Tests.Common =>
Apache.Ignite.Tests.Aot}/.editorconfig (100%)
create mode 100644
modules/platforms/dotnet/Apache.Ignite.Tests.Aot/Apache.Ignite.Tests.Aot.csproj
create mode 100644 modules/platforms/dotnet/Apache.Ignite.Tests.Aot/Assert.cs
create mode 100644
modules/platforms/dotnet/Apache.Ignite.Tests.Aot/Compute/ComputeTests.cs
create mode 100644 modules/platforms/dotnet/Apache.Ignite.Tests.Aot/Program.cs
create mode 100644 modules/platforms/dotnet/Apache.Ignite.Tests.Aot/README.md
create mode 100644
modules/platforms/dotnet/Apache.Ignite.Tests.Aot/Sql/SqlTests.cs
create mode 100644
modules/platforms/dotnet/Apache.Ignite.Tests.Aot/Table/TableTests.cs
create mode 100644
modules/platforms/dotnet/Apache.Ignite.Tests.Aot/TestRunner.cs
create mode 100644
modules/platforms/dotnet/Apache.Ignite.Tests.Aot/Transactions/TransactionsTests.cs
rename modules/platforms/dotnet/{Apache.Ignite.Tests =>
Apache.Ignite.Tests.Common}/Compute/TestCases.cs (97%)
delete mode 100644
modules/platforms/dotnet/Apache.Ignite/Internal/Linq/EnumerableHelper.cs