eerhardt commented on a change in pull request #10527: URL: https://github.com/apache/arrow/pull/10527#discussion_r684687558
########## 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 tested reading interleaved dictionaries by creating a test file with python In my spare time, I've been trying to set up the integration tests, so we can test the C# implementation against the other languages. Hopefully I can get the initial PR for that up soon. -- 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