eerhardt commented on a change in pull request #10527: URL: https://github.com/apache/arrow/pull/10527#discussion_r684687419
########## File path: csharp/src/Apache.Arrow/Ipc/ArrowStreamReaderImplementation.cs ########## @@ -59,6 +97,75 @@ protected async ValueTask<RecordBatch> ReadRecordBatchAsync(CancellationToken ca { await ReadSchemaAsync().ConfigureAwait(false); + await ReadInitialDictionariesAsync(cancellationToken).ConfigureAwait(false); + + return await ReadArrowObjectAsync(cancellationToken).ConfigureAwait(false); + } + + + protected RecordBatch ReadRecordBatch() + { + ReadSchema(); + + ReadInitialDictionaries(); + + return ReadArrowObject(); Review comment: > I would like to implement it in another PR because this PR will become too large. How is that? That is perfectly reasonable to me. I think the current functionality is sufficient for the first PR. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org