eldenmoon commented on code in PR #61383:
URL: https://github.com/apache/doris/pull/61383#discussion_r2963780457
##########
be/src/exec/common/variant_util.cpp:
##########
@@ -969,6 +983,16 @@ Status VariantCompactionUtil::check_path_stats(const
std::vector<RowsetSharedPtr
return Status::OK();
}
}
+ for (const auto& column : output->tablet_schema()->columns()) {
+ if (column->is_variant_type() &&
!should_check_variant_path_stats(*column)) {
+ return Status::OK();
+ }
+ }
+ for (const auto& column : output->tablet_schema()->columns()) {
+ if (!column->is_variant_type()) {
+ continue;
Review Comment:
i'll delete it next PR
--
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]