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

dataroaring pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new a67b64396d0 [fix] (schema change) ignore the error of repeatedly 
writing rowset during schema change (#29733) (#29810)
a67b64396d0 is described below

commit a67b64396d01113308877494e9f1917913a3fd60
Author: Luwei <[email protected]>
AuthorDate: Wed Jan 10 21:27:04 2024 +0800

    [fix] (schema change) ignore the error of repeatedly writing rowset during 
schema change (#29733) (#29810)
---
 be/src/olap/schema_change.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/olap/schema_change.cpp b/be/src/olap/schema_change.cpp
index 8882021f2a3..541adee194a 100644
--- a/be/src/olap/schema_change.cpp
+++ b/be/src/olap/schema_change.cpp
@@ -1107,7 +1107,7 @@ Status 
SchemaChangeHandler::_convert_historical_rowsets(const SchemaChangeParams
                          << "tablet=" << sc_params.new_tablet->full_name() << 
", version='"
                          << rs_reader->version().first << "-" << 
rs_reader->version().second;
             StorageEngine::instance()->add_unused_rowset(new_rowset);
-            return process_alter_exit();
+            res = Status::OK();
         } else if (!res) {
             LOG(WARNING) << "failed to register new version. "
                          << " tablet=" << sc_params.new_tablet->full_name()


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to