Skip to content

Commit adf6b04

Browse files
committed
update
1 parent 6ce2403 commit adf6b04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fe/fe-core/src/main/java/org/apache/doris/clone/DynamicPartitionScheduler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ private static long getNextPartitionSize(ArrayList<Long> historyPartitionsSize)
171171
}
172172

173173
boolean isAscending = true;
174-
List<Long> ascendingDeltaSize = List.newArrayList();
174+
List<Long> ascendingDeltaSize = Lists.newArrayList();
175175
for (int i = math.max(1, historyPartitionsSize.size() - 7); i < historyPartitionsSize.size(); i++) {
176176
long delta = historyPartitionsSize.get(i) - historyPartitionsSize.get(i - 1);
177177
if (delta < 0) {

0 commit comments

Comments
 (0)