Skip to content

Commit

Permalink
fix unitest exception
Browse files Browse the repository at this point in the history
  • Loading branch information
ggershinsky committed Dec 21, 2023
1 parent 1b0553b commit d24488a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public org.apache.iceberg.io.DataWriter<Record> newDataWriter(
return new org.apache.iceberg.io.DataWriter<>(
newAppender(file, format),
format,
file.plainOutputFile().location(),
file.encryptingOutputFile().location(),
spec,
partition,
file.keyMetadata());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public DataWriter<RowData> newDataWriter(
return new DataWriter<>(
newAppender(file, format),
format,
file.plainOutputFile().location(),
file.encryptingOutputFile().location(),
spec,
partition,
file.keyMetadata());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public DataWriter<InternalRow> newDataWriter(
return new DataWriter<>(
newAppender(file, format),
format,
file.plainOutputFile().location(),
file.encryptingOutputFile().location(),
spec,
partition,
file.keyMetadata());
Expand Down

0 comments on commit d24488a

Please sign in to comment.