From 35a979879f09e090b1ed77e94781c153a5dd77ab Mon Sep 17 00:00:00 2001 From: tanjialiang Date: Thu, 2 Jan 2025 11:09:54 +0800 Subject: [PATCH] mvn spotless:apply --- .../paimon/table/PrimaryKeyFileStoreTableTest.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/paimon-core/src/test/java/org/apache/paimon/table/PrimaryKeyFileStoreTableTest.java b/paimon-core/src/test/java/org/apache/paimon/table/PrimaryKeyFileStoreTableTest.java index 46068bf3e276..ae2ca611520b 100644 --- a/paimon-core/src/test/java/org/apache/paimon/table/PrimaryKeyFileStoreTableTest.java +++ b/paimon-core/src/test/java/org/apache/paimon/table/PrimaryKeyFileStoreTableTest.java @@ -1065,10 +1065,11 @@ public void testDeletionVectorsCombineWithFileIndexPushDownParquet() throws Exce plan = table.newScan().plan(); reader = table.newRead().withFilter(predicate).createReader(plan.splits()); AtomicLong expectedCnt = new AtomicLong(0); - reader.forEachRemaining(row -> { - expectedCnt.incrementAndGet(); - assertThat(row.getLong(2)).isEqualTo(expectedMap.get(row.getInt(1))); - }); + reader.forEachRemaining( + row -> { + expectedCnt.incrementAndGet(); + assertThat(row.getLong(2)).isEqualTo(expectedMap.get(row.getInt(1))); + }); long count = expectedMap.entrySet().stream().filter(x -> x.getValue().equals(next)).count(); assertThat(expectedCnt.get()).isEqualTo(count);