You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by da...@apache.org on 2023/01/19 09:04:28 UTC

[doris] branch branch-1.2-lts updated: [fix](load) fix that tablet channel doesn't set received rows for verify the number of rows (#15961)

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

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


The following commit(s) were added to refs/heads/branch-1.2-lts by this push:
     new ab8a5669da [fix](load) fix that tablet channel doesn't set received rows for verify the number of rows (#15961)
ab8a5669da is described below

commit ab8a5669daa90bf0e81b7e1ae20466f85b46dc85
Author: Xin Liao <li...@126.com>
AuthorDate: Mon Jan 16 19:46:59 2023 +0800

    [fix](load) fix that tablet channel doesn't set received rows for verify the number of rows (#15961)
---
 be/src/runtime/tablets_channel.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/be/src/runtime/tablets_channel.cpp b/be/src/runtime/tablets_channel.cpp
index 598140eeda..544f1022e3 100644
--- a/be/src/runtime/tablets_channel.cpp
+++ b/be/src/runtime/tablets_channel.cpp
@@ -196,6 +196,7 @@ void TabletsChannel::_close_wait(DeltaWriter* writer,
         PTabletInfo* tablet_info = tablet_vec->Add();
         tablet_info->set_tablet_id(writer->tablet_id());
         tablet_info->set_schema_hash(writer->schema_hash());
+        tablet_info->set_received_rows(writer->total_received_rows());
     } else {
         PTabletError* tablet_error = tablet_errors->Add();
         tablet_error->set_tablet_id(writer->tablet_id());


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