@@ -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