HashidaTKS commented on pull request #10990: URL: https://github.com/apache/arrow/pull/10990#issuecomment-928209072
The internal `ListArray.Builder` ctor was called instead of the public ctor in `ArrayBuilderTests.NestedListArrayBuilder()`. Because of adding `InternalsVisibleTo` into `AssemblyInfo.cs`, `Arrow.Array.Test` could see the internal ctor and it had higher overload priority than the public ctor. ``` public Builder(IArrowType valueDataType) ... internal Builder(ListType dataType) ... ``` For the above reasons, I changed to use Reflection instead of internalsVisibleTo. -- 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]
