forked from sqlancer/sqlancer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCockroachDBBugs.java
More file actions
56 lines (37 loc) · 1.73 KB
/
CockroachDBBugs.java
File metadata and controls
56 lines (37 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package sqlancer.cockroachdb;
public final class CockroachDBBugs {
// https://github.com/cockroachdb/cockroach/issues/46915
public static boolean bug46915;
// https://github.com/cockroachdb/cockroach/issues/45703
public static boolean bug45703;
// https://github.com/cockroachdb/cockroach/issues/44757
public static boolean bug44757;
// https://github.com/cockroachdb/cockroach/issues/83792
public static boolean bug83792 = true;
// https://github.com/cockroachdb/cockroach/issues/83874
public static boolean bug83874 = true;
// https://github.com/cockroachdb/cockroach/issues/83973
public static boolean bug83973 = true;
// https://github.com/cockroachdb/cockroach/issues/83976
public static boolean bug83976 = true;
// https://github.com/cockroachdb/cockroach/issues/84154
public static boolean bug84154 = true;
// https://github.com/cockroachdb/cockroach/issues/85356
public static boolean bug85356 = true;
// https://github.com/cockroachdb/cockroach/issues/85371
public static boolean bug85371 = true;
// https://github.com/cockroachdb/cockroach/issues/85389
public static boolean bug85389 = true;
// https://github.com/cockroachdb/cockroach/issues/85390
public static boolean bug85390 = true;
// https://github.com/cockroachdb/cockroach/issues/85393
public static boolean bug85393 = true;
// https://github.com/cockroachdb/cockroach/issues/85394
public static boolean bug85394 = true;
// https://github.com/cockroachdb/cockroach/issues/85441
public static boolean bug85441 = true;
// https://github.com/cockroachdb/cockroach/issues/85499
public static boolean bug85499 = true;
private CockroachDBBugs() {
}
}