This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-java.git


The following commit(s) were added to refs/heads/master by this push:
     new 2ccc24312 MINOR: parquet-avro tests should not debug to stderr (#3329)
2ccc24312 is described below

commit 2ccc2431209ac4a4d745d9f1016e29098204caad
Author: Aaron Niskode-Dossett <[email protected]>
AuthorDate: Tue Dec 2 13:56:51 2025 -0600

    MINOR: parquet-avro tests should not debug to stderr (#3329)
    
    * MINOR: parquet-avro tests should not debug to stderr
    
    * just remove them
---
 .../test/java/org/apache/parquet/avro/TestAvroSchemaConverter.java   | 5 -----
 1 file changed, 5 deletions(-)

diff --git 
a/parquet-avro/src/test/java/org/apache/parquet/avro/TestAvroSchemaConverter.java
 
b/parquet-avro/src/test/java/org/apache/parquet/avro/TestAvroSchemaConverter.java
index 130192e15..346fafe7d 100644
--- 
a/parquet-avro/src/test/java/org/apache/parquet/avro/TestAvroSchemaConverter.java
+++ 
b/parquet-avro/src/test/java/org/apache/parquet/avro/TestAvroSchemaConverter.java
@@ -372,7 +372,6 @@ public class TestAvroSchemaConverter {
     Schema schema = Schema.createRecord("HasArray", null, null, false);
     schema.setFields(
         Lists.newArrayList(new Schema.Field("myarray", 
Schema.createArray(optional(innerRecord)), null, null)));
-    System.err.println("Avro schema: " + schema.toString(true));
 
     testRoundTripConversion(
         NEW_BEHAVIOR,
@@ -398,7 +397,6 @@ public class TestAvroSchemaConverter {
     Schema schema = Schema.createRecord("HasArray", null, null, false);
     schema.setFields(
         Lists.newArrayList(new Schema.Field("myarray", 
Schema.createArray(optional(innerRecord)), null, null)));
-    System.err.println("Avro schema: " + schema.toString(true));
 
     // Cannot use round-trip assertion because InnerRecord optional is removed
     testAvroToParquetConversion(
@@ -418,7 +416,6 @@ public class TestAvroSchemaConverter {
     Schema schema = Schema.createRecord("AvroCompatListInList", null, null, 
false);
     schema.setFields(
         Lists.newArrayList(new Schema.Field("listOfLists", listOfLists, null, 
JsonProperties.NULL_VALUE)));
-    System.err.println("Avro schema: " + schema.toString(true));
 
     testRoundTripConversion(
         schema,
@@ -462,7 +459,6 @@ public class TestAvroSchemaConverter {
     Schema schema = Schema.createRecord("ThriftCompatListInList", null, null, 
false);
     schema.setFields(
         Lists.newArrayList(new Schema.Field("listOfLists", listOfLists, null, 
JsonProperties.NULL_VALUE)));
-    System.err.println("Avro schema: " + schema.toString(true));
 
     // Cannot use round-trip assertion because repeated group names differ
     testParquetToAvroConversion(
@@ -494,7 +490,6 @@ public class TestAvroSchemaConverter {
     Schema schema = Schema.createRecord("UnknownTwoLevelListInList", null, 
null, false);
     schema.setFields(
         Lists.newArrayList(new Schema.Field("listOfLists", listOfLists, null, 
JsonProperties.NULL_VALUE)));
-    System.err.println("Avro schema: " + schema.toString(true));
 
     // Cannot use round-trip assertion because repeated group names differ
     testParquetToAvroConversion(

Reply via email to