Skip to content

Commit 2ccc243

Browse files
authored
MINOR: parquet-avro tests should not debug to stderr (#3329)
* MINOR: parquet-avro tests should not debug to stderr * just remove them
1 parent ee2c751 commit 2ccc243

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

parquet-avro/src/test/java/org/apache/parquet/avro/TestAvroSchemaConverter.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,6 @@ public void testArrayOfOptionalRecords() throws Exception {
372372
Schema schema = Schema.createRecord("HasArray", null, null, false);
373373
schema.setFields(
374374
Lists.newArrayList(new Schema.Field("myarray", Schema.createArray(optional(innerRecord)), null, null)));
375-
System.err.println("Avro schema: " + schema.toString(true));
376375

377376
testRoundTripConversion(
378377
NEW_BEHAVIOR,
@@ -398,7 +397,6 @@ public void testArrayOfOptionalRecordsOldBehavior() throws Exception {
398397
Schema schema = Schema.createRecord("HasArray", null, null, false);
399398
schema.setFields(
400399
Lists.newArrayList(new Schema.Field("myarray", Schema.createArray(optional(innerRecord)), null, null)));
401-
System.err.println("Avro schema: " + schema.toString(true));
402400

403401
// Cannot use round-trip assertion because InnerRecord optional is removed
404402
testAvroToParquetConversion(
@@ -418,7 +416,6 @@ public void testOldAvroListOfLists() throws Exception {
418416
Schema schema = Schema.createRecord("AvroCompatListInList", null, null, false);
419417
schema.setFields(
420418
Lists.newArrayList(new Schema.Field("listOfLists", listOfLists, null, JsonProperties.NULL_VALUE)));
421-
System.err.println("Avro schema: " + schema.toString(true));
422419

423420
testRoundTripConversion(
424421
schema,
@@ -462,7 +459,6 @@ public void testOldThriftListOfLists() throws Exception {
462459
Schema schema = Schema.createRecord("ThriftCompatListInList", null, null, false);
463460
schema.setFields(
464461
Lists.newArrayList(new Schema.Field("listOfLists", listOfLists, null, JsonProperties.NULL_VALUE)));
465-
System.err.println("Avro schema: " + schema.toString(true));
466462

467463
// Cannot use round-trip assertion because repeated group names differ
468464
testParquetToAvroConversion(
@@ -494,7 +490,6 @@ public void testUnknownTwoLevelListOfLists() throws Exception {
494490
Schema schema = Schema.createRecord("UnknownTwoLevelListInList", null, null, false);
495491
schema.setFields(
496492
Lists.newArrayList(new Schema.Field("listOfLists", listOfLists, null, JsonProperties.NULL_VALUE)));
497-
System.err.println("Avro schema: " + schema.toString(true));
498493

499494
// Cannot use round-trip assertion because repeated group names differ
500495
testParquetToAvroConversion(

0 commit comments

Comments
 (0)