You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2022/04/11 01:38:33 UTC

[incubator-doris] branch master updated: [fix] Fix bug that tablet data size and row num info are failed to report. (#8945)

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

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 8158b05ea0 [fix] Fix bug that tablet data size and row num info are failed to report. (#8945)
8158b05ea0 is described below

commit 8158b05ea0487438dcb4ed44bdd04f1524f4ac29
Author: Mingyu Chen <mo...@gmail.com>
AuthorDate: Mon Apr 11 09:38:28 2022 +0800

    [fix] Fix bug that tablet data size and row num info are failed to report. (#8945)
    
    Introduced from #8146
---
 be/src/olap/tablet_manager.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/be/src/olap/tablet_manager.cpp b/be/src/olap/tablet_manager.cpp
index 7284a881be..59b8b6a96d 100644
--- a/be/src/olap/tablet_manager.cpp
+++ b/be/src/olap/tablet_manager.cpp
@@ -849,6 +849,7 @@ OLAPStatus TabletManager::build_all_report_tablets_info(
             tablet_version_num_hist.add(tablet_ptr->version_count());
             tablets_info->emplace(tablet_id, t_tablet);
             TTabletStat t_tablet_stat;
+            t_tablet_stat.__set_tablet_id(tablet_info.tablet_id);
             t_tablet_stat.__set_data_size(tablet_info.data_size);
             t_tablet_stat.__set_row_num(tablet_info.row_count);
             t_tablet_stat.__set_version_count(tablet_info.version_count);


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