Skip to content

Commit e46c059

Browse files
committed
Fix test
1 parent 12cfd00 commit e46c059

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/com/nvidia/spark/rapids/jni/kudo/KudoSerializerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ static Table buildLargeTestTable() {
816816
List<ColumnVector> allCols = new ArrayList<>();
817817
List<ColumnVector> tableCols = new ArrayList<>();
818818

819-
final int nonNullCount = Integer.MAX_VALUE / 512 - 21; // to avoid OOM
819+
final int nonNullCount = Integer.MAX_VALUE / 128 - 21; // to avoid OOM
820820
final int nullCount = 11; // to add nulls
821821
final int totalCount = nonNullCount + nullCount;
822822

0 commit comments

Comments
 (0)