Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
leaves12138 committed Apr 23, 2024
1 parent 512af38 commit 6344263
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,8 @@ private List<KeyValue> writeThenRead(
entry.getValue().stream()
.map(ManifestEntry::file)
.collect(Collectors.toList()))
.withBucketPath("not used")
.withDefaultFormat("orc")
.build());
RecordReaderIterator<KeyValue> actualIterator = new RecordReaderIterator<>(reader);
while (actualIterator.hasNext()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ public void testSerializer() throws IOException {
.withPartition(data.partition)
.withBucket(data.bucket)
.withDataFiles(files)
.withBucketPath("my path")
.withDefaultFormat("orc")
.build();

ByteArrayOutputStream out = new ByteArrayOutputStream();
Expand Down

0 comments on commit 6344263

Please sign in to comment.