This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-trino.git
The following commit(s) were added to refs/heads/main by this push:
new d606b33 Support show tables for trino
d606b33 is described below
commit d606b336b6c509a9000c01c26c5a2d77e9cfc742
Author: Jingsong <[email protected]>
AuthorDate: Tue Apr 23 17:34:03 2024 +0800
Support show tables for trino
---
.../src/main/java/org/apache/paimon/trino/fileio/TrinoFileIO.java | 5 -----
1 file changed, 5 deletions(-)
diff --git
a/paimon-trino-422/src/main/java/org/apache/paimon/trino/fileio/TrinoFileIO.java
b/paimon-trino-422/src/main/java/org/apache/paimon/trino/fileio/TrinoFileIO.java
index 97625a6..94290ee 100644
---
a/paimon-trino-422/src/main/java/org/apache/paimon/trino/fileio/TrinoFileIO.java
+++
b/paimon-trino-422/src/main/java/org/apache/paimon/trino/fileio/TrinoFileIO.java
@@ -107,11 +107,6 @@ public class TrinoFileIO implements FileIO {
return fileStatusList.toArray(new FileStatus[0]);
}
- @Override
- public FileStatus[] listDirectories(Path path) throws IOException {
- throw new UnsupportedOperationException();
- }
-
@Override
public boolean exists(Path path) throws IOException {
return
trinoFileSystem.directoryExists(Location.of(path.toString())).orElse(false)