/
NikolayIvkin
/
sqlancer2
Обзор
Документация
Войти
/
NikolayIvkin
/
sqlancer2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/sqlancer/mysql/MySQLBugs.java
25 строк
687 B
Manuel Rigger
Enforce the PMD FieldDeclarationsShouldBeAtStartOfClass rule
30 май 2020, 01:00
30 май 2020, 01:00
2a79d85
Код
Авторство
О чём код?
package sqlancer.mysql; // do not make the fields final to avoid warnings public final class MySQLBugs { // https://bugs.mysql.com/bug.php?id=99127 0.9 > t0.c0 malfunctions when c0 is // an INT UNSIGNED public static boolean bug99127 = true; // https://bugs.mysql.com/99182 BETWEEN malfunctions for DECIMAL and TEXT public static boolean bug99181 = true; // https://bugs.mysql.com/bug.php?id=99183 public static boolean bug99183 = true; // https://bugs.mysql.com/bug.php?id=95894 public static boolean bug95894 = true; // https://bugs.mysql.com/bug.php?id=99135 public static boolean bug99135 = true; private MySQLBugs() { } }