LuciferYang commented on code in PR #43642:
URL: https://github.com/apache/spark/pull/43642#discussion_r1382878088
##########
sql/core/src/test/scala/org/apache/spark/sql/streaming/StreamSuite.scala:
##########
@@ -224,7 +224,7 @@ class StreamSuite extends StreamTest {
// Parquet write page-level CRC checksums will change the file
size and
// affect the data order when reading these files. Please see
PARQUET-1746 for details.
val outputDf =
spark.read.parquet(outputDir.getAbsolutePath).sort($"a").as[Long]
- checkDataset[Long](outputDf, (0L to 10L).toArray: _*)
+ checkDataset[Long](outputDf, (0L to 10L).toSeq: _*)
Review Comment:
```suggestion
checkDataset[Long](outputDf, 0L to 10L: _*)
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]