File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -473,7 +473,7 @@ class HiveQuerySuite extends HiveComparisonTest {
473473
474474 sql(s " SET ${testKey + testKey}= ${testVal + testVal}" )
475475 assert(hiveconf.get(testKey + testKey, " " ) == testVal + testVal)
476- assertResult(Array (s " ${testKey + testKey}= ${testVal + testVal}" , s " $testKey = $testVal " )) {
476+ assertResult(Array (s " $testKey = $testVal " , s " $ {testKey + testKey}= ${testVal + testVal}" )) {
477477 sql(s " SET " ).collect().map(_.getString(0 ))
478478 }
479479
@@ -501,7 +501,7 @@ class HiveQuerySuite extends HiveComparisonTest {
501501
502502 sql(s " SET ${testKey + testKey}= ${testVal + testVal}" )
503503 assert(hiveconf.get(testKey + testKey, " " ) == testVal + testVal)
504- assertResult(Array (s " ${testKey + testKey}= ${testVal + testVal}" , s " $testKey = $testVal " )) {
504+ assertResult(Array (s " $testKey = $testVal " , s " $ {testKey + testKey}= ${testVal + testVal}" )) {
505505 sql(" SET" ).collect().map(_.getString(0 ))
506506 }
507507
You can’t perform that action at this time.
0 commit comments