Skip to content

Commit 5d49821

Browse files
findinpathebyhr
authored andcommitted
Override listFilesStartingFrom method in IcebergRestCatalogFileSystem
1 parent 23a3917 commit 5d49821

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

plugin/trino-iceberg/src/main/java/io/trino/plugin/iceberg/catalog/rest/IcebergRestCatalogFileSystem.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,13 @@ public FileIterator listFiles(Location location)
131131
return fileSystem(location).listFiles(location);
132132
}
133133

134+
@Override
135+
public FileIterator listFilesStartingFrom(Location location, String startingFrom)
136+
throws IOException
137+
{
138+
return fileSystem(location).listFilesStartingFrom(location, startingFrom);
139+
}
140+
134141
@Override
135142
public Optional<Boolean> directoryExists(Location location)
136143
throws IOException

0 commit comments

Comments
 (0)