(LocatedFileStatus file)
| 111 | } |
| 112 | |
| 113 | public boolean addFile(LocatedFileStatus file) throws IOException { |
| 114 | try (Reader reader = OrcFile.createReader(file.getPath(), |
| 115 | OrcFile.readerOptions(conf))) { |
| 116 | return addReader(file, reader); |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | private static class StringLongPair { |
| 121 | final String name; |
no test coverage detected