Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix](hive-writer) Fix the issue of block was not copied to do filtering when hive partition writer write block to file. #32775

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions be/src/vec/sink/writer/vhive_partition_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ Status VHivePartitionWriter::_projection_and_filter_block(doris::vectorized::Blo
return status;
}
RETURN_IF_ERROR(vectorized::VExprContext::get_output_block_after_execute_exprs(
_vec_output_expr_ctxs, input_block, output_block));
_vec_output_expr_ctxs, input_block, output_block, true));
materialize_block_inplace(*output_block);

if (filter == nullptr) {
Expand Down Expand Up @@ -282,4 +282,4 @@ THivePartitionUpdate VHivePartitionWriter::_build_partition_update() {
}

} // namespace vectorized
} // namespace doris
} // namespace doris
Loading
Loading