-
- Downloads
[SPARK-15297][SQL] Fix Set -V Command
#### What changes were proposed in this pull request? The command `SET -v` always outputs the default values even if we set the parameter. This behavior is incorrect. Instead, if users override it, we should output the user-specified value. In addition, the output schema of `SET -v` is wrong. We should use the column `value` instead of `default` for the parameter value. This PR is to fix the above two issues. #### How was this patch tested? Added a test case. Author: gatorsmile <gatorsmile@gmail.com> Closes #13081 from gatorsmile/setVcommand.
Showing
- sql/core/src/main/scala/org/apache/spark/sql/execution/command/SetCommand.scala 1 addition, 3 deletions...a/org/apache/spark/sql/execution/command/SetCommand.scala
- sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala 1 addition, 1 deletion...rc/main/scala/org/apache/spark/sql/internal/SQLConf.scala
- sql/core/src/test/scala/org/apache/spark/sql/internal/SQLConfSuite.scala 22 additions, 1 deletion...st/scala/org/apache/spark/sql/internal/SQLConfSuite.scala
Please register or sign in to comment