File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
presto-orc/src/main/java/com/facebook/presto/orc Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -303,9 +303,9 @@ public String toString(Charset charset)
303
303
@ Override
304
304
public String toString ()
305
305
{
306
- StringBuilder builder = new StringBuilder ("OutputStreamSliceOutputAdapter {" );
306
+ StringBuilder builder = new StringBuilder ("ChunkedSliceOutput {" );
307
307
builder .append ("position=" ).append (size ());
308
- builder .append ("bufferSize=" ).append (slice .length ());
308
+ builder .append (", bufferSize=" ).append (slice .length ());
309
309
builder .append ('}' );
310
310
return builder .toString ();
311
311
}
Original file line number Diff line number Diff line change @@ -423,9 +423,9 @@ public String toString(Charset charset)
423
423
@ Override
424
424
public String toString ()
425
425
{
426
- StringBuilder builder = new StringBuilder ("OutputStreamSliceOutputAdapter {" );
426
+ StringBuilder builder = new StringBuilder ("OrcOutputBuffer {" );
427
427
builder .append ("outputStream=" ).append (compressedOutputStream );
428
- builder .append ("bufferSize=" ).append (slice .length ());
428
+ builder .append (", bufferSize=" ).append (slice .length ());
429
429
builder .append ('}' );
430
430
return builder .toString ();
431
431
}
You can’t perform that action at this time.
0 commit comments