From 133b359666f09a7b736fdf460450586d2c436f95 Mon Sep 17 00:00:00 2001 From: Suranjan Kumar Date: Tue, 23 Apr 2019 14:21:21 +0530 Subject: [PATCH] Ignore the tests Can be run conditionally and some can be converted to hydra --- .../org/apache/spark/sql/SnapshotConsistencyTest.scala | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cluster/src/test/scala/org/apache/spark/sql/SnapshotConsistencyTest.scala b/cluster/src/test/scala/org/apache/spark/sql/SnapshotConsistencyTest.scala index beda4e2f9f..25df516bbb 100644 --- a/cluster/src/test/scala/org/apache/spark/sql/SnapshotConsistencyTest.scala +++ b/cluster/src/test/scala/org/apache/spark/sql/SnapshotConsistencyTest.scala @@ -34,7 +34,7 @@ class SnapshotConsistencyTest snc.sql(s"drop table if exists $tableName") } - test("test insert atomicity in column table") { + ignore("test insert atomicity in column table") { snc.sql(s"DROP TABLE IF EXISTS $tableName") snc.sql(s"CREATE TABLE $tableName (Col1 INT not null, Col2 INT not null) " + "USING column " + @@ -90,7 +90,7 @@ class SnapshotConsistencyTest logInfo("Successful") } - test("test delete atomicity in column table") { + ignore("test delete atomicity in column table") { snc.sql(s"DROP TABLE IF EXISTS $tableName") snc.sql(s"CREATE TABLE $tableName (Col1 INT not null, Col2 INT not null) " + "USING column " + @@ -145,7 +145,7 @@ class SnapshotConsistencyTest logInfo("Successful") } - test("test update atomicity in column table") { + ignore("test update atomicity in column table") { snc.sql(s"DROP TABLE IF EXISTS $tableName") snc.sql(s"CREATE TABLE $tableName (Col1 INT not null, Col2 INT not null) " + "USING column " + @@ -206,7 +206,7 @@ class SnapshotConsistencyTest logInfo("Successful") } - test("test update atomicity in column table with eviction") { + ignore("test update atomicity in column table with eviction") { snc.sql(s"DROP TABLE IF EXISTS $tableName") snc.sql(s"CREATE TABLE $tableName " + s"(Col1 INT not null, Col2 INT not null, Col3 String) " + @@ -273,7 +273,7 @@ class SnapshotConsistencyTest } - test("test update atomicity in column table row buffer") { + ignore("test update atomicity in column table row buffer") { snc.sql(s"DROP TABLE IF EXISTS $tableName") snc.sql(s"CREATE TABLE $tableName(Col1 INT ,Col2 INT) " + "USING column " +