@@ -34,7 +34,7 @@ class SnapshotConsistencyTest
34
34
snc.sql(s " drop table if exists $tableName" )
35
35
}
36
36
37
- test (" test insert atomicity in column table" ) {
37
+ ignore (" test insert atomicity in column table" ) {
38
38
snc.sql(s " DROP TABLE IF EXISTS $tableName" )
39
39
snc.sql(s " CREATE TABLE $tableName (Col1 INT not null, Col2 INT not null) " +
40
40
" USING column " +
@@ -90,7 +90,7 @@ class SnapshotConsistencyTest
90
90
logInfo(" Successful" )
91
91
}
92
92
93
- test (" test delete atomicity in column table" ) {
93
+ ignore (" test delete atomicity in column table" ) {
94
94
snc.sql(s " DROP TABLE IF EXISTS $tableName" )
95
95
snc.sql(s " CREATE TABLE $tableName (Col1 INT not null, Col2 INT not null) " +
96
96
" USING column " +
@@ -145,7 +145,7 @@ class SnapshotConsistencyTest
145
145
logInfo(" Successful" )
146
146
}
147
147
148
- test (" test update atomicity in column table" ) {
148
+ ignore (" test update atomicity in column table" ) {
149
149
snc.sql(s " DROP TABLE IF EXISTS $tableName" )
150
150
snc.sql(s " CREATE TABLE $tableName (Col1 INT not null, Col2 INT not null) " +
151
151
" USING column " +
@@ -206,7 +206,7 @@ class SnapshotConsistencyTest
206
206
logInfo(" Successful" )
207
207
}
208
208
209
- test (" test update atomicity in column table with eviction" ) {
209
+ ignore (" test update atomicity in column table with eviction" ) {
210
210
snc.sql(s " DROP TABLE IF EXISTS $tableName" )
211
211
snc.sql(s " CREATE TABLE $tableName " +
212
212
s " (Col1 INT not null, Col2 INT not null, Col3 String) " +
@@ -273,7 +273,7 @@ class SnapshotConsistencyTest
273
273
}
274
274
275
275
276
- test (" test update atomicity in column table row buffer" ) {
276
+ ignore (" test update atomicity in column table row buffer" ) {
277
277
snc.sql(s " DROP TABLE IF EXISTS $tableName" )
278
278
snc.sql(s " CREATE TABLE $tableName(Col1 INT ,Col2 INT) " +
279
279
" USING column " +
0 commit comments