HashidaTKS commented on a change in pull request #10527:
URL: https://github.com/apache/arrow/pull/10527#discussion_r663550121
##########
File path: csharp/src/Apache.Arrow/Ipc/ArrowReaderImplementation.cs
##########
@@ -29,6 +29,13 @@ internal abstract class ArrowReaderImplementation :
IDisposable
{
public Schema Schema { get; protected set; }
protected bool HasReadSchema => Schema != null;
+ protected bool HasReadInitialDictionary { get; set; }
+ protected readonly DictionaryMemo _dictionaryMemo;
+
+ public ArrowReaderImplementation()
+ {
+ _dictionaryMemo = new DictionaryMemo();
Review comment:
Thank you, I reimplemented them with the way 2.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]