Skip to content

Commit

Permalink
revert change of HiveQuerySuite
Browse files Browse the repository at this point in the history
  • Loading branch information
scwf committed Aug 19, 2014
1 parent 0cc05dd commit 93bc0c5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ class HiveQuerySuite extends HiveComparisonTest {

sql(s"SET ${testKey + testKey}=${testVal + testVal}")
assert(hiveconf.get(testKey + testKey, "") == testVal + testVal)
assertResult(Array(s"${testKey + testKey}=${testVal + testVal}", s"$testKey=$testVal")) {
assertResult(Array(s"$testKey=$testVal", s"${testKey + testKey}=${testVal + testVal}")) {
sql(s"SET").collect().map(_.getString(0))
}

Expand Down Expand Up @@ -501,7 +501,7 @@ class HiveQuerySuite extends HiveComparisonTest {

sql(s"SET ${testKey + testKey}=${testVal + testVal}")
assert(hiveconf.get(testKey + testKey, "") == testVal + testVal)
assertResult(Array(s"${testKey + testKey}=${testVal + testVal}", s"$testKey=$testVal")) {
assertResult(Array(s"$testKey=$testVal", s"${testKey + testKey}=${testVal + testVal}")) {
sql("SET").collect().map(_.getString(0))
}

Expand Down

0 comments on commit 93bc0c5

Please sign in to comment.