From 0215bec58fa615370274223f0416604e142f87cf Mon Sep 17 00:00:00 2001 From: wyb Date: Mon, 2 Sep 2024 16:00:02 +0800 Subject: [PATCH] Add comment Signed-off-by: wyb --- be/src/exec/parquet_schema_builder.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/be/src/exec/parquet_schema_builder.cpp b/be/src/exec/parquet_schema_builder.cpp index 0d19cf5f7436f..f582520ed9da5 100644 --- a/be/src/exec/parquet_schema_builder.cpp +++ b/be/src/exec/parquet_schema_builder.cpp @@ -226,6 +226,8 @@ static Status get_parquet_type_from_map(const ::parquet::schema::NodePtr& node, /* try to infer struct type from group node. +parquet does not have struct type, there is no struct definition in parquet. +try to infer like this. group { type field0; type field1;