Skip to content

Commit bbf41b9

Browse files
author
Suranjan Kumar
committed
Ignore the tests
Can be run conditionally and some can be converted to hydra
1 parent 0177d72 commit bbf41b9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cluster/src/test/scala/org/apache/spark/sql/SnapshotConsistencyTest.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class SnapshotConsistencyTest
3434
snc.sql(s"drop table if exists $tableName")
3535
}
3636

37-
test("test insert atomicity in column table") {
37+
ignore("test insert atomicity in column table") {
3838
snc.sql(s"DROP TABLE IF EXISTS $tableName")
3939
snc.sql(s"CREATE TABLE $tableName (Col1 INT not null, Col2 INT not null) " +
4040
"USING column " +
@@ -90,7 +90,7 @@ class SnapshotConsistencyTest
9090
logInfo("Successful")
9191
}
9292

93-
test("test delete atomicity in column table") {
93+
ignore("test delete atomicity in column table") {
9494
snc.sql(s"DROP TABLE IF EXISTS $tableName")
9595
snc.sql(s"CREATE TABLE $tableName (Col1 INT not null, Col2 INT not null) " +
9696
"USING column " +
@@ -145,7 +145,7 @@ class SnapshotConsistencyTest
145145
logInfo("Successful")
146146
}
147147

148-
test("test update atomicity in column table") {
148+
ignore("test update atomicity in column table") {
149149
snc.sql(s"DROP TABLE IF EXISTS $tableName")
150150
snc.sql(s"CREATE TABLE $tableName (Col1 INT not null, Col2 INT not null) " +
151151
"USING column " +
@@ -206,7 +206,7 @@ class SnapshotConsistencyTest
206206
logInfo("Successful")
207207
}
208208

209-
test("test update atomicity in column table with eviction") {
209+
ignore("test update atomicity in column table with eviction") {
210210
snc.sql(s"DROP TABLE IF EXISTS $tableName")
211211
snc.sql(s"CREATE TABLE $tableName " +
212212
s"(Col1 INT not null, Col2 INT not null, Col3 String) " +
@@ -273,7 +273,7 @@ class SnapshotConsistencyTest
273273
}
274274

275275

276-
test("test update atomicity in column table row buffer") {
276+
ignore("test update atomicity in column table row buffer") {
277277
snc.sql(s"DROP TABLE IF EXISTS $tableName")
278278
snc.sql(s"CREATE TABLE $tableName(Col1 INT ,Col2 INT) " +
279279
"USING column " +

0 commit comments

Comments
 (0)