This is an automated email from the ASF dual-hosted git repository. panxiaolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new f79692ee5aa [Fix](compile) Fix control reaches end of non-void function (#41692) f79692ee5aa is described below commit f79692ee5aaeeb89e5bc8702d2e3f6553fbd6f40 Author: bobhan1 <bh2444151...@outlook.com> AuthorDate: Fri Oct 11 16:16:03 2024 +0800 [Fix](compile) Fix control reaches end of non-void function (#41692) Fix control reaches end of non-void function --- be/src/olap/partial_update_info.h | 1 + 1 file changed, 1 insertion(+) diff --git a/be/src/olap/partial_update_info.h b/be/src/olap/partial_update_info.h index 9f4ae504ff7..c7e69f33184 100644 --- a/be/src/olap/partial_update_info.h +++ b/be/src/olap/partial_update_info.h @@ -66,6 +66,7 @@ struct PartialUpdateInfo { case UniqueKeyUpdateModePB::UPDATE_FLEXIBLE_COLUMNS: return "flexible partial update"; } + return ""; } bool is_partial_update() const { return partial_update_mode != UniqueKeyUpdateModePB::UPSERT; } bool is_fixed_partial_update() const { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org