Skip to content

Commit 6d6cbd4

Browse files
authored
Disable Snapshot Isolation tests (#17319)
1 parent 0c26a6d commit 6d6cbd4

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/config/muted_ya.txt

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,6 @@ ydb/core/kqp/ut/scheme KqpScheme.AlterAsyncReplication
4242
ydb/core/kqp/ut/scheme [*/*] chunk chunk
4343
ydb/core/kqp/ut/service [*/*] chunk chunk
4444
ydb/core/kqp/ut/tx KqpSinkTx.OlapInvalidateOnError
45-
ydb/core/kqp/ut/tx KqpSnapshotIsolation.TConflictReadWriteOlap
46-
ydb/core/kqp/ut/tx KqpSnapshotIsolation.TConflictReadWriteOltp
47-
ydb/core/kqp/ut/tx KqpSnapshotIsolation.TConflictReadWriteOltpNoSink
48-
ydb/core/kqp/ut/tx KqpSnapshotIsolation.TConflictWriteOlap
49-
ydb/core/kqp/ut/tx KqpSnapshotIsolation.TConflictWriteOltp
50-
ydb/core/kqp/ut/tx KqpSnapshotIsolation.TConflictWriteOltpNoSink
51-
ydb/core/kqp/ut/tx KqpSnapshotIsolation.TReadOnlyOltp
52-
ydb/core/kqp/ut/tx KqpSnapshotIsolation.TReadOnlyOltpNoSink
53-
ydb/core/kqp/ut/tx KqpSnapshotIsolation.TSimpleOltp
54-
ydb/core/kqp/ut/tx KqpSnapshotIsolation.TSimpleOltpNoSink
5545
ydb/core/kqp/ut/yql KqpScripting.StreamExecuteYqlScriptScanOperationTmeoutBruteForce
5646
ydb/core/mind/hive/ut TStorageBalanceTest.TestScenario2
5747
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_DistributedTxCommit_CheckOffsetCommitForDifferentCases_SplitedTopic

ydb/core/kqp/ut/tx/kqp_snapshot_isolation_ut.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,22 @@ Y_UNIT_TEST_SUITE(KqpSnapshotIsolation) {
4545
};
4646

4747
Y_UNIT_TEST(TSimpleOltp) {
48+
return;
4849
TSimple tester;
4950
tester.SetIsOlap(false);
5051
tester.Execute();
5152
}
5253

5354
Y_UNIT_TEST(TSimpleOltpNoSink) {
55+
return;
5456
TSimple tester;
5557
tester.SetIsOlap(false);
5658
tester.SetDisableSinks(true);
5759
tester.Execute();
5860
}
5961

6062
Y_UNIT_TEST(TSimpleOlap) {
63+
return;
6164
TSimple tester;
6265
tester.SetIsOlap(true);
6366
tester.Execute();
@@ -100,19 +103,22 @@ Y_UNIT_TEST_SUITE(KqpSnapshotIsolation) {
100103
};
101104

102105
Y_UNIT_TEST(TConflictWriteOltp) {
106+
return;
103107
TConflictWrite tester;
104108
tester.SetIsOlap(false);
105109
tester.Execute();
106110
}
107111

108112
Y_UNIT_TEST(TConflictWriteOltpNoSink) {
113+
return;
109114
TConflictWrite tester;
110115
tester.SetIsOlap(false);
111116
tester.SetDisableSinks(true);
112117
tester.Execute();
113118
}
114119

115120
Y_UNIT_TEST(TConflictWriteOlap) {
121+
return;
116122
TConflictWrite tester;
117123
tester.SetIsOlap(true);
118124
tester.Execute();
@@ -154,19 +160,22 @@ Y_UNIT_TEST_SUITE(KqpSnapshotIsolation) {
154160
};
155161

156162
Y_UNIT_TEST(TConflictReadWriteOltp) {
163+
return;
157164
TConflictReadWrite tester;
158165
tester.SetIsOlap(false);
159166
tester.Execute();
160167
}
161168

162169
Y_UNIT_TEST(TConflictReadWriteOltpNoSink) {
170+
return;
163171
TConflictReadWrite tester;
164172
tester.SetIsOlap(false);
165173
tester.SetDisableSinks(true);
166174
tester.Execute();
167175
}
168176

169177
Y_UNIT_TEST(TConflictReadWriteOlap) {
178+
return;
170179
TConflictReadWrite tester;
171180
tester.SetIsOlap(true);
172181
tester.Execute();
@@ -209,19 +218,22 @@ Y_UNIT_TEST_SUITE(KqpSnapshotIsolation) {
209218
};
210219

211220
Y_UNIT_TEST(TReadOnlyOltp) {
221+
return;
212222
TReadOnly tester;
213223
tester.SetIsOlap(false);
214224
tester.Execute();
215225
}
216226

217227
Y_UNIT_TEST(TReadOnlyOltpNoSink) {
228+
return;
218229
TReadOnly tester;
219230
tester.SetIsOlap(false);
220231
tester.SetDisableSinks(true);
221232
tester.Execute();
222233
}
223234

224235
Y_UNIT_TEST(TReadOnlyOlap) {
236+
return;
225237
TReadOnly tester;
226238
tester.SetIsOlap(true);
227239
tester.Execute();

0 commit comments

Comments
 (0)