Skip to content

Commit

Permalink
Fix Hive written bytes reporting for uncompressed text
Browse files Browse the repository at this point in the history
  • Loading branch information
electrum committed Aug 16, 2023
1 parent f212fff commit eed06da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public TextLineWriter(OutputStream outputStream, Optional<CompressionKind> compr
this.outputStream = compressionKind.get().createCodec().createStreamCompressor(countingOutputStream);
}
else {
this.outputStream = outputStream;
this.outputStream = countingOutputStream;
}
}

Expand Down

0 comments on commit eed06da

Please sign in to comment.