Skip to content

Commit 3f49981

Browse files
committed
Fix test failure after rebase
1 parent 79e3b40 commit 3f49981

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

core/src/test/java/org/apache/iceberg/TestPartitionStatsUtil.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ public void testPartitionStatsWithBucketTransformSchemaEvolution() throws Except
410410
0,
411411
0L,
412412
0,
413-
0L,
413+
null,
414414
snapshot1.timestampMillis(),
415415
snapshot1.snapshotId()),
416416
Tuple.tuple(
@@ -423,7 +423,7 @@ public void testPartitionStatsWithBucketTransformSchemaEvolution() throws Except
423423
0,
424424
0L,
425425
0,
426-
0L,
426+
null,
427427
snapshot1.timestampMillis(),
428428
snapshot1.snapshotId()));
429429

@@ -459,7 +459,7 @@ public void testPartitionStatsWithBucketTransformSchemaEvolution() throws Except
459459
0,
460460
0L,
461461
0,
462-
0L,
462+
null,
463463
snapshot1.timestampMillis(),
464464
snapshot1.snapshotId()),
465465
Tuple.tuple(
@@ -472,7 +472,7 @@ public void testPartitionStatsWithBucketTransformSchemaEvolution() throws Except
472472
0,
473473
0L,
474474
0,
475-
0L,
475+
null,
476476
snapshot1.timestampMillis(),
477477
snapshot1.snapshotId()),
478478
Tuple.tuple(
@@ -485,7 +485,7 @@ public void testPartitionStatsWithBucketTransformSchemaEvolution() throws Except
485485
0,
486486
0L,
487487
0,
488-
0L,
488+
null,
489489
snapshot2.timestampMillis(),
490490
snapshot2.snapshotId()),
491491
Tuple.tuple(
@@ -498,7 +498,7 @@ public void testPartitionStatsWithBucketTransformSchemaEvolution() throws Except
498498
0,
499499
0L,
500500
0,
501-
0L,
501+
null,
502502
snapshot2.timestampMillis(),
503503
snapshot2.snapshotId()),
504504
Tuple.tuple(
@@ -511,7 +511,7 @@ public void testPartitionStatsWithBucketTransformSchemaEvolution() throws Except
511511
0,
512512
0L,
513513
0,
514-
0L,
514+
null,
515515
snapshot2.timestampMillis(),
516516
snapshot2.snapshotId()),
517517
Tuple.tuple(
@@ -524,7 +524,7 @@ public void testPartitionStatsWithBucketTransformSchemaEvolution() throws Except
524524
0,
525525
0L,
526526
0,
527-
0L,
527+
null,
528528
snapshot2.timestampMillis(),
529529
snapshot2.snapshotId()));
530530
}

0 commit comments

Comments
 (0)