Harnoor7 commented on code in PR #14479: URL: https://github.com/apache/pinot/pull/14479#discussion_r1858257147
########## pinot-segment-local/src/test/java/org/apache/pinot/segment/local/indexsegment/mutable/MutableSegmentImplTestUtils.java: ########## @@ -82,22 +82,22 @@ public static MutableSegmentImpl createMutableSegmentImpl(Schema schema, Set<Str PartitionDedupMetadataManager partitionDedupMetadataManager) { return createMutableSegmentImpl(schema, noDictionaryColumns, varLengthDictionaryColumns, invertedIndexColumns, Collections.emptyMap(), aggregateMetrics, nullHandlingEnabled, upsertConfig, timeColumnName, - partitionUpsertMetadataManager, dedupConfig, partitionDedupMetadataManager, null, Collections.emptyList()); + partitionUpsertMetadataManager, dedupConfig, partitionDedupMetadataManager, null, Collections.emptyList(), false); } public static MutableSegmentImpl createMutableSegmentImpl(Schema schema, Set<String> noDictionaryColumns, Set<String> varLengthDictionaryColumns, Set<String> invertedIndexColumns, Map<String, JsonIndexConfig> jsonIndexConfigs, ServerMetrics serverMetrics) { return createMutableSegmentImpl(schema, noDictionaryColumns, varLengthDictionaryColumns, invertedIndexColumns, - jsonIndexConfigs, false, true, null, null, null, null, null, serverMetrics, Collections.emptyList()); + jsonIndexConfigs, false, true, null, null, null, null, null, serverMetrics, Collections.emptyList(), false); } public static MutableSegmentImpl createMutableSegmentImpl(Schema schema, Set<String> noDictionaryColumns, Set<String> varLengthDictionaryColumns, Set<String> invertedIndexColumns, Map<String, JsonIndexConfig> jsonIndexConfigs, boolean aggregateMetrics, boolean nullHandlingEnabled, UpsertConfig upsertConfig, String timeColumnName, PartitionUpsertMetadataManager partitionUpsertMetadataManager, DedupConfig dedupConfig, PartitionDedupMetadataManager partitionDedupMetadataManager, ServerMetrics serverMetrics, - List<AggregationConfig> aggregationConfigs) { + List<AggregationConfig> aggregationConfigs, boolean thresholdForColEnabled) { Review Comment: Added new method, let me know if still needs refactoring. -- 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...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org