Skip to content

Commit 5264dd2

Browse files
author
yuzelin
committed
fix
1 parent 075d22a commit 5264dd2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/lookup/FullCacheLookupTable.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
import java.io.File;
5656
import java.io.IOException;
5757
import java.util.ArrayList;
58+
import java.util.Collections;
5859
import java.util.HashSet;
5960
import java.util.Iterator;
6061
import java.util.List;
@@ -92,7 +93,7 @@ public abstract class FullCacheLookupTable implements LookupTable {
9293
private final FileStoreTable table;
9394
private Future<?> refreshFuture;
9495
private LookupStreamingReader reader;
95-
private List<BinaryRow> scanPartitions;
96+
private List<BinaryRow> scanPartitions = Collections.emptyList();
9697
@Nullable private Predicate partitionFilter;
9798
@Nullable private Filter<InternalRow> cacheRowFilter;
9899

0 commit comments

Comments
 (0)