Skip to content

Commit

Permalink
Try to fix UT OOM error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sh-Zh-7 committed May 24, 2024
1 parent b0dbc43 commit 891466f
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,13 @@ public void testMemoryControl() {
testRowList(iterator);

columns =
generateColumnsWithRandomBinaries(2 * ITERATION_TIMES, byteLengthMin, byteLengthMax);
generateColumnsWithRandomBinaries(ITERATION_TIMES, byteLengthMin, byteLengthMax);
rowList.put(columns);
rowList.setEvictionUpperBound(rowList.size());
testRowList(iterator);

columns =
generateColumnsWithRandomBinaries(ITERATION_TIMES, byteLengthMin, byteLengthMax);
rowList.put(columns);
rowList.setEvictionUpperBound(rowList.size());
testRowList(iterator);
Expand Down

0 comments on commit 891466f

Please sign in to comment.