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 18b84b2dfe [Bug](compile) fix compiling problem (#11851)
18b84b2dfe is described below

commit 18b84b2dfe9e9e7ba7b995a9757668fa0ac300b0
Author: Gabriel <gabrielleeb...@gmail.com>
AuthorDate: Wed Aug 17 13:44:57 2022 +0800

    [Bug](compile) fix compiling problem (#11851)
    
    fix compiling problem
---
 be/src/olap/olap_server.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/be/src/olap/olap_server.cpp b/be/src/olap/olap_server.cpp
index 68c24d212a..5fa1ec6837 100644
--- a/be/src/olap/olap_server.cpp
+++ b/be/src/olap/olap_server.cpp
@@ -524,13 +524,13 @@ std::vector<TabletSharedPtr> 
StorageEngine::_generate_compaction_tasks(
                             : copied_base_map[data_dir],
                     &disk_max_score, _cumulative_compaction_policy);
             if (tablet != nullptr &&
-                
!tablet->tablet_meta()->tablet_schema().disable_auto_compaction()) {
+                
!tablet->tablet_meta()->tablet_schema()->disable_auto_compaction()) {
                 if (need_pick_tablet) {
                     tablets_compaction.emplace_back(tablet);
                 }
                 max_compaction_score = std::max(max_compaction_score, 
disk_max_score);
             } else if (tablet != nullptr &&
-                       
tablet->tablet_meta()->tablet_schema().disable_auto_compaction()) {
+                       
tablet->tablet_meta()->tablet_schema()->disable_auto_compaction()) {
                 LOG(INFO) << "Tablet " << tablet->full_name()
                           << " will be ignored by automatic compaction tasks 
since it's set to "
                           << "disabled automatic compaction.";


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

Reply via email to