dataroaring commented on code in PR #41950: URL: https://github.com/apache/doris/pull/41950#discussion_r1803196714
########## be/src/olap/rowset/segment_v2/segment_writer.cpp: ########## @@ -1031,7 +705,9 @@ Status SegmentWriter::append_block(const vectorized::Block* block, size_t row_po if (_opts.rowset_ctx->partial_update_info->is_fixed_partial_update()) { RETURN_IF_ERROR(append_block_with_partial_content(block, row_pos, num_rows)); } else { - RETURN_IF_ERROR(append_block_with_flexible_partial_content(block, row_pos, num_rows)); + return Status::NotSupported<false>( + "SegmentWriter doesn't support flexible partial update, please set " + "enable_vertical_segment_writer=true on all BEs to use VerticalSegmentWriter."); Review Comment: in be.conf -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org