-
Notifications
You must be signed in to change notification settings - Fork 397
Expand file tree
/
Copy pathTiDBBugs.java
More file actions
44 lines (30 loc) · 1.26 KB
/
TiDBBugs.java
File metadata and controls
44 lines (30 loc) · 1.26 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
package sqlancer.tidb;
// do not make the fields final to avoid warnings
public final class TiDBBugs {
// 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;
// https://github.com/pingcap/tidb/issues/38319
public static boolean bug38319 = true;
// https://github.com/pingcap/tidb/issues/44747
public static boolean bug44747 = true;
// https://github.com/pingcap/tidb/issues/46556
public static boolean bug46556 = true;
// https://github.com/pingcap/tidb/issues/46591
public static boolean bug46591 = true;
// https://github.com/pingcap/tidb/issues/46598
public static boolean bug46598 = true;
// https://github.com/pingcap/tidb/issues/47346
public static boolean bug47346 = true;
// https://github.com/pingcap/tidb/issues/47348
public static boolean bug47348 = true;
// https://github.com/pingcap/tidb/issues/51525
public static boolean bug51525 = true;
private TiDBBugs() {
}
}