zhangstar333 commented on code in PR #57821:
URL: https://github.com/apache/doris/pull/57821#discussion_r2545088316
##########
be/src/vec/exec/format/parquet/parquet_column_convert.cpp:
##########
@@ -251,6 +254,15 @@ std::unique_ptr<PhysicalToLogicalConverter>
PhysicalToLogicalConverter::get_conv
physical_converter =
std::make_unique<UnsupportedConverter>(src_physical_type,
src_logical_type);
}
+ } else if (src_logical_primitive == TYPE_VARBINARY) {
+ if (src_physical_type == tparquet::Type::FIXED_LEN_BYTE_ARRAY) {
+ DCHECK(parquet_schema.logicalType.__isset.UUID) <<
parquet_schema.name;
Review Comment:
now when src_logical_primitive is varbinary type
case 1: parquet logicalType.__isset.UUID and it's FIXED_LEN_BYTE_ARRAY
case 2: parquet byte_array without logicalType and converted_type
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]