csun5285 commented on code in PR #22159: URL: https://github.com/apache/doris/pull/22159#discussion_r1278509531
########## fe/fe-core/src/main/java/org/apache/doris/common/util/PropertyAnalyzer.java: ########## @@ -595,6 +605,82 @@ public static Boolean analyzeSkipWriteIndexOnLoad(Map<String, String> properties + " must be `true` or `false`"); } + public static String analyzeCompactionPolicy(Map<String, String> properties) throws AnalysisException { + if (properties == null || properties.isEmpty()) { + return ""; + } + String compactionPolicy = ""; Review Comment: done ########## gensrc/proto/olap_file.proto: ########## @@ -236,6 +236,10 @@ message TabletSchemaPB { repeated string partial_update_input_columns = 21; optional bool enable_single_replica_compaction = 22 [default=false]; optional bool skip_write_index_on_load = 23 [default=false]; + optional string compaction_policy = 24; Review Comment: done -- 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