-
Notifications
You must be signed in to change notification settings - Fork 397
Expand file tree
/
Copy pathCitusBugs.java
More file actions
39 lines (26 loc) · 1.07 KB
/
CitusBugs.java
File metadata and controls
39 lines (26 loc) · 1.07 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
package sqlancer.citus;
// do not make the fields final to avoid warnings
public final class CitusBugs {
// https://github.com/citusdata/citus/issues/3987
public static boolean bug3987;
// https://github.com/citusdata/citus/issues/3980
public static boolean bug3980;
// https://github.com/citusdata/citus/issues/3957
public static boolean bug3957;
// https://github.com/citusdata/citus/issues/4019
public static boolean bug4019 = true;
// https://github.com/citusdata/citus/issues/4013
public static boolean bug4013 = true;
// https://github.com/citusdata/citus/issues/3982
public static boolean bug3982 = true;
// https://github.com/citusdata/citus/issues/3981
public static boolean bug3981 = true;
// https://github.com/citusdata/citus/issues/4014
public static boolean bug4014 = true;
// https://github.com/citusdata/citus/issues/4079
public static boolean bug4079 = true;
// https://github.com/citusdata/citus/issues/6298
public static boolean bug6298 = true;
private CitusBugs() {
}
}