sgrebnov commented on code in PR #2961:
URL: https://github.com/apache/arrow-adbc/pull/2961#discussion_r2159567200


##########
csharp/src/Apache.Arrow.Adbc/Extensions/IArrowArrayExtensions.cs:
##########
@@ -103,6 +103,8 @@ public static class IArrowArrayExtensions
                     return ((Int64Array)arrowArray).GetValue(index);
                 case ArrowTypeId.String:
                     return ((StringArray)arrowArray).GetString(index);
+                case ArrowTypeId.LargeString:
+                    return ((LargeStringArray)arrowArray).GetString(index);

Review Comment:
   Just a confirmation that at least `LargeBinary` and `LargeList` are 
supported and could be added as a test source with Spice.



-- 
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

Reply via email to