Skip to content

Commit

Permalink
Marked test cases in JavaHiveQLSuite with "ignore"
Browse files Browse the repository at this point in the history
  • Loading branch information
liancheng committed Jun 15, 2014
1 parent 22aec97 commit 92bb4fb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class JavaHiveQLSuite extends FunSuite {
override val sqlContext = TestHive
}

test("SELECT * FROM src") {
ignore("SELECT * FROM src") {
assert(
javaHiveCtx.hql("SELECT * FROM src").collect().map(_.getInt(0)) ===
TestHive.sql("SELECT * FROM src").collect().map(_.getInt(0)).toSeq)
Expand All @@ -52,7 +52,7 @@ class JavaHiveQLSuite extends FunSuite {
explanation.size == 1 && explanation.head.startsWith(explainCommandClassName)
}

test("Query Hive native command execution result") {
ignore("Query Hive native command execution result") {
val tableName = "test_native_commands"

assertResult(0) {
Expand Down Expand Up @@ -88,7 +88,7 @@ class JavaHiveQLSuite extends FunSuite {
TestHive.reset()
}

test("Exactly once semantics for DDL and command statements") {
ignore("Exactly once semantics for DDL and command statements") {
val tableName = "test_exactly_once"
val q0 = javaHiveCtx.hql(s"CREATE TABLE $tableName(key INT, value STRING)")

Expand Down

0 comments on commit 92bb4fb

Please sign in to comment.