forked from sqlancer/sqlancer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTiDBBugs.java
More file actions
63 lines (42 loc) · 1.88 KB
/
TiDBBugs.java
File metadata and controls
63 lines (42 loc) · 1.88 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
57
58
59
60
61
62
63
package sqlancer.tidb;
// do not make the fields final to avoid warnings
public final class TiDBBugs {
// https://github.com/pingcap/tidb/issues/15987
public static boolean bug15987;
// // https://github.com/pingcap/tidb/issues/15988
public static boolean bug15988;
// https://github.com/pingcap/tidb/issues/16028
public static boolean bug16028;
// https://github.com/pingcap/tidb/issues/16020
public static boolean bug16020;
// https://github.com/pingcap/tidb/issues/15990
public static boolean bug15990;
// https://github.com/pingcap/tidb/issues/15844
public static boolean bug15844;
// https://github.com/tidb-challenge-program/bug-hunting-issue/issues/10
public static boolean bug10;
// https://github.com/tidb-challenge-program/bug-hunting-issue/issues/14
public static boolean bug14;
// https://github.com/tidb-challenge-program/bug-hunting-issue/issues/15
public static boolean bug15;
// https://github.com/tidb-challenge-program/bug-hunting-issue/issues/16
public static boolean bug16;
// https://github.com/tidb-challenge-program/bug-hunting-issue/issues/19
public static boolean bug19;
// https://github.com/tidb-challenge-program/bug-hunting-issue/issues/48
public static boolean bug48;
// https://github.com/tidb-challenge-program/bug-hunting-issue/issues/50
public static boolean bug50;
// https://github.com/citusdata/citus/issues/4079
public static boolean bug4079;
// https://github.com/pingcap/tidb/issues/35677
public static boolean bug35677 = true;
// https://github.com/pingcap/tidb/issues/35522
public static boolean bug35522 = true;
// https://github.com/pingcap/tidb/issues/35652
public static boolean bug35652 = true;
// https://github.com/pingcap/tidb/issues/38295
public static boolean bug38295 = true;
private TiDBBugs() {
}
}