Skip to content

Commit 92bb4fb

Browse files
committed
Marked test cases in JavaHiveQLSuite with "ignore"
1 parent 22aec97 commit 92bb4fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/api/java/JavaHiveQLSuite.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class JavaHiveQLSuite extends FunSuite {
3838
override val sqlContext = TestHive
3939
}
4040

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

55-
test("Query Hive native command execution result") {
55+
ignore("Query Hive native command execution result") {
5656
val tableName = "test_native_commands"
5757

5858
assertResult(0) {
@@ -88,7 +88,7 @@ class JavaHiveQLSuite extends FunSuite {
8888
TestHive.reset()
8989
}
9090

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

0 commit comments

Comments
 (0)