forked from sqlancer/sqlancer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMariaDBBugs.java
More file actions
35 lines (23 loc) · 944 Bytes
/
MariaDBBugs.java
File metadata and controls
35 lines (23 loc) · 944 Bytes
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
package sqlancer.mariadb;
public final class MariaDBBugs {
// https://jira.mariadb.org/browse/MDEV-21058
public static boolean bug21058 = true;
// https://jira.mariadb.org/browse/MDEV-32076
public static boolean bug32076 = true;
// https://jira.mariadb.org/browse/MDEV-32099
public static boolean bug32099 = true;
// https://jira.mariadb.org/browse/MDEV-32105
public static boolean bug32105 = true;
// https://jira.mariadb.org/browse/MDEV-32106
public static boolean bug32106 = true;
// https://jira.mariadb.org/browse/MDEV-32107
public static boolean bug32107 = true;
// https://jira.mariadb.org/browse/MDEV-32108
public static boolean bug32108 = true;
// https://jira.mariadb.org/browse/MDEV-32143
public static boolean bug32143 = true;
// https://jira.mariadb.org/browse/MDEV-33893
public static boolean bug33893 = true;
private MariaDBBugs() {
}
}