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 a141081fe37682395305394ad98118875c77a4f7
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed Dec 24 10:21:52 2025 +0200

    Fix ResultSetMetadata.ToString
---
 .../platforms/dotnet/Apache.Ignite/Internal/Sql/ResultSetMetadata.cs    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/modules/platforms/dotnet/Apache.Ignite/Internal/Sql/ResultSetMetadata.cs 
b/modules/platforms/dotnet/Apache.Ignite/Internal/Sql/ResultSetMetadata.cs
index 372562fb7e5..a6a5f3dace8 100644
--- a/modules/platforms/dotnet/Apache.Ignite/Internal/Sql/ResultSetMetadata.cs
+++ b/modules/platforms/dotnet/Apache.Ignite/Internal/Sql/ResultSetMetadata.cs
@@ -70,7 +70,7 @@ namespace Apache.Ignite.Internal.Sql
         /// <inheritdoc/>
         public override string ToString() =>
             new IgniteToStringBuilder(GetType())
-                .AppendList(_columns)
+                .AppendList(Columns)
                 .Build();
     }
 }

Reply via email to