davidhcoe commented on code in PR #2587:
URL: https://github.com/apache/arrow-adbc/pull/2587#discussion_r1986225540
##########
csharp/src/Apache.Arrow.Adbc/Extensions/IArrowArrayExtensions.cs:
##########
@@ -256,7 +282,7 @@ public static class IArrowArrayExtensions
case ArrowTypeId.List:
return (array, index) =>
((ListArray)array).GetSlicedValues(index);
case ArrowTypeId.Struct:
- return (array, index) =>
SerializeToJson((StructArray)array, index);
+ return (array, index) => resultType ==
StructResultType.JsonString ? SerializeToJson((StructArray)array, index) :
ParseStructArray((StructArray)array, index) ;
Review Comment:
fixed in latest push
--
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]