File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
sql/hive/src/test/scala/org/apache/spark/sql/hive/api/java Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments