CurtHagenlocher commented on code in PR #37885:
URL: https://github.com/apache/arrow/pull/37885#discussion_r1342722244


##########
csharp/src/Apache.Arrow/C/CArrowSchemaImporter.cs:
##########
@@ -206,6 +206,12 @@ public ArrowType GetAsType()
 
                     return new FixedSizeListType(childField, width);
                 }
+                else if (format == "+m")
+                {
+                    return new MapType(
+                        ParseChildren("map").Single(),
+                        (_cSchema->flags & 
CArrowSchema.ArrowFlagMapKeysSorted) != 0);
+                }
 
                 // TODO: Map type and large list type

Review Comment:
   darn, forgot this one



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

Reply via email to