From a0da45b0bb75757e24febdc74c0a12768825421c Mon Sep 17 00:00:00 2001 From: Lisandro Crespo Date: Wed, 29 Jul 2026 12:47:48 -0500 Subject: [PATCH] Fix rows of exactly 1024 bytes getting ignored in C# --- crates/bindings-csharp/Runtime/Internal/ITable.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/bindings-csharp/Runtime/Internal/ITable.cs b/crates/bindings-csharp/Runtime/Internal/ITable.cs index a322216a1d3..83aab358102 100644 --- a/crates/bindings-csharp/Runtime/Internal/ITable.cs +++ b/crates/bindings-csharp/Runtime/Internal/ITable.cs @@ -33,10 +33,6 @@ public bool MoveNext() if (ret == Errno.EXHAUSTED) { handle = FFI.RowIter.INVALID; - if (buffer_len == requested_len) - { - buffer_len = 0; - } } // On success, the only way `buffer_len == 0` is for the iterator to be exhausted. // This happens when the host iterator was empty from the start.