You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pt...@apache.org on 2023/01/05 08:14:04 UTC

[ignite-3] branch main updated (2169d8a590 -> e025f0d8d0)

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 2169d8a590 IGNITE-18413 Reorganize metastorage modules (#1451)
     add e025f0d8d0 IGNITE-18084 .NET: LINQ: Add async materialization (#1495)

No new revisions were added by this update.

Summary of changes:
 .../Linq/LinqSqlGenerationTests.cs                 |  99 ++++
 .../Linq/LinqTests.Aggregate.cs                    |  43 +-
 .../Linq/LinqTests.AsyncMaterialization.cs         | 300 +++++++++++++
 .../dotnet/Apache.Ignite.Tests/Linq/LinqTests.cs   |  35 +-
 .../Linq/ResultSelectorCacheKeyTests.cs            |  20 +-
 .../dotnet/Apache.Ignite.Tests/Sql/SqlTests.cs     |  38 ++
 .../platforms/dotnet/Apache.Ignite.sln.DotSettings |   3 +-
 .../Internal/Common/IgniteArgumentCheck.cs         |  10 +-
 .../Linq/{QueryData.cs => ExecutionOptions.cs}     |  18 +-
 .../Internal/Linq/IIgniteQueryableInternal.cs      |   6 +
 .../Internal/Linq/IgniteQueryExecutor.cs           |  51 ++-
 .../Internal/Linq/IgniteQueryProvider.cs           |  36 ++
 .../Apache.Ignite/Internal/Linq/IgniteQueryable.cs |  21 +-
 .../Apache.Ignite/Internal/Linq/ResultSelector.cs  |  74 +--
 .../Internal/Linq/ResultSelectorCacheKey.cs        |  14 +-
 ...eryableInternal.cs => ResultSelectorOptions.cs} |  25 +-
 .../dotnet/Apache.Ignite/Internal/Sql/ResultSet.cs |  38 +-
 .../dotnet/Apache.Ignite/Sql/IResultSet.cs         |  28 ++
 .../Sql/IgniteQueryableExtensions.Average.cs       | 456 +++++++++++++++++++
 .../Sql/IgniteQueryableExtensions.Sum.cs           | 456 +++++++++++++++++++
 .../Apache.Ignite/Sql/IgniteQueryableExtensions.cs | 500 ++++++++++++++++++++-
 21 files changed, 2159 insertions(+), 112 deletions(-)
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Tests/Linq/LinqTests.AsyncMaterialization.cs
 copy modules/platforms/dotnet/Apache.Ignite/Internal/Linq/{QueryData.cs => ExecutionOptions.cs} (74%)
 copy modules/platforms/dotnet/Apache.Ignite/Internal/Linq/{IIgniteQueryableInternal.cs => ResultSelectorOptions.cs} (64%)
 create mode 100644 modules/platforms/dotnet/Apache.Ignite/Sql/IgniteQueryableExtensions.Average.cs
 create mode 100644 modules/platforms/dotnet/Apache.Ignite/Sql/IgniteQueryableExtensions.Sum.cs