MaxGekk commented on a change in pull request #32090:
URL: https://github.com/apache/spark/pull/32090#discussion_r609460743



##########
File path: sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala
##########
@@ -3944,6 +3944,23 @@ class SQLQuerySuite extends QueryTest with 
SharedSparkSession with AdaptiveSpark
         }
       }
     }
+
+    // scala is 0
+    withTempPath { path =>
+      val df = sql("SELECT 11 a, 22L b")
+      df.write.parquet(path.toString)
+      val schema1 = "a DECIMAL(9, 0), b DECIMAL(18, 0)"
+      val schema2 = "a DECIMAL(38, 0), b DECIMAL(38, 0)"
+      Seq(true, false).foreach { vectorized =>

Review comment:
       Please, use `withAllParquetReaders`.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to