We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99db75d commit 275dd53Copy full SHA for 275dd53
paimon-core/src/main/java/org/apache/paimon/index/IndexFileHandler.java
@@ -189,6 +189,9 @@ public List<IndexManifestEntry> scanEntries(
189
190
public List<IndexManifestEntry> scanEntries(
191
Snapshot snapshot, String indexType, Set<BinaryRow> partitions) {
192
+ if (snapshot == null) {
193
+ return Collections.emptyList();
194
+ }
195
String indexManifest = snapshot.indexManifest();
196
if (indexManifest == null) {
197
return Collections.emptyList();
0 commit comments