cloud-fan commented on a change in pull request #26813: [SPARK-30188][SQL][WIP] Enable adaptive query execution by default URL: https://github.com/apache/spark/pull/26813#discussion_r362206963
########## File path: sql/core/src/test/resources/sql-tests/inputs/explain.sql ########## @@ -4,7 +4,7 @@ CREATE table explain_temp2 (key int, val int) USING PARQUET; CREATE table explain_temp3 (key int, val int) USING PARQUET; SET spark.sql.codegen.wholeStage = true; - +SET spark.sql.adaptive.enabled = false; Review comment: since we are touchinng it, let's use the right approach. We should put this line at the beginning of this file ``` --SET spark.sql.codegen.wholeStage = true --SET spark.sql.adaptive.enabled = false ``` ---------------------------------------------------------------- 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] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
