ChaomingZhangCN commented on code in PR #198:
URL: https://github.com/apache/paimon-cpp/pull/198#discussion_r3792062315


##########
src/paimon/format/parquet/parquet_file_batch_reader.cpp:
##########
@@ -65,6 +66,13 @@ class Predicate;
 namespace paimon::parquet {
 
 namespace {
+std::shared_ptr<arrow::DataType> GetListElementType(const 
std::shared_ptr<arrow::DataType>& type) {
+    if (type->id() == arrow::Type::FIXED_SIZE_LIST) {
+        return static_cast<const 
arrow::FixedSizeListType&>(*type).value_type();
+    }
+    return static_cast<const arrow::ListType&>(*type).value_type();
+}

Review Comment:
   ok



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