Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add show test.
  • Loading branch information
dongjoon-hyun committed Jan 21, 2017
commit 047a1f21ca316ba26499606821984b52cf07ef2c
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,11 @@ class SQLQuerySuite extends QueryTest with SharedSQLContext {
spark.sessionState.conf.clear()
}

test("`SET -v` collect test") {
test("`SET -v` show") {
sql("SET -v").show(200, false)
}

test("`SET -v` collect") {
sql("SET -v").collect()
}

Expand Down