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 e9d74fd62d4d9a555ef9b1c7fbaf802306537855 Author: Pavel Tupitsyn <[email protected]> AuthorDate: Wed Dec 24 12:23:20 2025 +0200 Revert "wip BasicMappers - sql" This reverts commit 86cdb2f0460b630616b6795cebad2fdb95be9e74. --- .../platforms/dotnet/Apache.Ignite/Internal/Sql/Sql.cs | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/modules/platforms/dotnet/Apache.Ignite/Internal/Sql/Sql.cs b/modules/platforms/dotnet/Apache.Ignite/Internal/Sql/Sql.cs index 770a78de6a3..b89451b50e2 100644 --- a/modules/platforms/dotnet/Apache.Ignite/Internal/Sql/Sql.cs +++ b/modules/platforms/dotnet/Apache.Ignite/Internal/Sql/Sql.cs @@ -33,7 +33,6 @@ namespace Apache.Ignite.Internal.Sql using Proto; using Proto.BinaryTuple; using Proto.MsgPack; - using Table; using Table.Serialization; using Transactions; @@ -74,19 +73,8 @@ namespace Apache.Ignite.Internal.Sql /// <inheritdoc/> [RequiresUnreferencedCode(ReflectionUtils.TrimWarning)] public async Task<IResultSet<T>> ExecuteAsync<T>( - ITransaction? transaction, SqlStatement statement, CancellationToken cancellationToken, params object?[]? args) - { - if (BasicMappers.TryGet<T>() is { } mapper) - { - return await ExecuteAsync( - transaction, - mapper, - statement, - cancellationToken, - args).ConfigureAwait(false); - } - - return await ExecuteAsyncInternal( + ITransaction? transaction, SqlStatement statement, CancellationToken cancellationToken, params object?[]? args) => + await ExecuteAsyncInternal( transaction, statement, static meta => GetReaderFactory<T>(meta), @@ -94,7 +82,6 @@ namespace Apache.Ignite.Internal.Sql args, cancellationToken) .ConfigureAwait(false); - } /// <inheritdoc/> public async Task<IResultSet<T>> ExecuteAsync<T>(
