This is an automated email from the ASF dual-hosted git repository.

dataroaring 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 9a24e70e743 [fix](group commit) Fix replay wal core because undefined 
TLoadSourceType (#30571)
9a24e70e743 is described below

commit 9a24e70e74315377fd86d7949e0151123c0e1feb
Author: meiyi <myime...@gmail.com>
AuthorDate: Wed Jan 31 00:19:04 2024 +0800

    [fix](group commit) Fix replay wal core because undefined TLoadSourceType 
(#30571)
---
 be/src/olap/wal/wal_table.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/be/src/olap/wal/wal_table.cpp b/be/src/olap/wal/wal_table.cpp
index e64cf00911f..3a31ebcf9c0 100644
--- a/be/src/olap/wal/wal_table.cpp
+++ b/be/src/olap/wal/wal_table.cpp
@@ -259,6 +259,8 @@ Status WalTable::_handle_stream_load(int64_t wal_id, const 
std::string& wal,
     ctx->auth.token = "relay_wal"; // this is a fake, fe not check it now
     ctx->auth.user = "admin";
     ctx->group_commit = false;
+    ctx->load_type = TLoadType::MANUL_LOAD;
+    ctx->load_src_type = TLoadSourceType::RAW;
     auto st = _http_stream_action->process_put(nullptr, ctx);
     if (st.ok()) {
         // wait stream load finish


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to