github-actions[bot] commented on code in PR #14981:
URL: https://github.com/apache/doris/pull/14981#discussion_r1044618919


##########
be/src/olap/delta_writer.cpp:
##########
@@ -111,7 +111,8 @@ Status DeltaWriter::init() {
     }
 
     // check tablet version number
-    if (_tablet->exceed_version_limit(config::max_tablet_version_num - 100)) {
+    if (!config::diable_auto_compaction &&

Review Comment:
   warning: no member named 'diable_auto_compaction' in namespace 
'doris::config'; did you mean 'disable_auto_compaction'? 
[clang-diagnostic-error]
   
   ```suggestion
       if (!config::disable_auto_compaction &&
   ```
   **be/src/common/config.h:252:** 'disable_auto_compaction' declared here
   ```cpp
   CONF_mBool(disable_auto_compaction, "false");
              ^
   ```
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to