Kimahriman commented on code in PR #38229:
URL: https://github.com/apache/spark/pull/38229#discussion_r994021492
##########
sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/FileSourceAggregatePushDownSuite.scala:
##########
@@ -347,7 +347,8 @@ trait FileSourceAggregatePushDownSuite
spark.read.format(format).load(file.getCanonicalPath).createOrReplaceTempView("test")
Seq("false", "true").foreach { enableVectorizedReader =>
withSQLConf(aggPushDownEnabledKey -> "true",
- vectorizedReaderEnabledKey -> enableVectorizedReader) {
+ vectorizedReaderEnabledKey -> enableVectorizedReader,
+ SQLConf.MAX_METADATA_STRING_LENGTH.key -> "1000") {
Review Comment:
The overridden description part wasn't limited in chars, but the metadata
version is, so just bump up the max size to make sure the full string can be
found
--
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]