viirya commented on code in PR #1517:
URL: https://github.com/apache/arrow-rs/pull/1517#discussion_r843553970
##########
parquet/src/arrow/array_reader.rs:
##########
@@ -2268,4 +2272,67 @@ mod tests {
&PrimitiveArray::<ArrowInt32>::from(vec![Some(3), Some(4)])
);
}
+
+ #[test]
+ fn test_nested_lists() {
+ // Construct column schema
+ let message_type = "
+ message table {
+ REPEATED group table_info {
+ REQUIRED BYTE_ARRAY name;
+ REPEATED group cols {
+ REQUIRED BYTE_ARRAY name;
+ REQUIRED INT32 type;
+ OPTIONAL INT32 length;
+ }
+ REPEATED group tags {
+ REQUIRED BYTE_ARRAY name;
+ REQUIRED INT32 type;
+ OPTIONAL INT32 length;
+ }
+ }
+ }
+ ";
Review Comment:
This message type is copied from the issue.
--
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]