Skip to content

Commit

Permalink
[Fix](hive-writer) Fix the issue of block was not copied to do filter…
Browse files Browse the repository at this point in the history
…ing when hive partition writer write block to file. (apache#32775)
  • Loading branch information
kaka11chen committed Apr 9, 2024
1 parent 533effd commit d25ddfc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion be/src/vec/sink/writer/vhive_partition_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,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
Loading

0 comments on commit d25ddfc

Please sign in to comment.