mirror of
https://github.com/MariaDB/server.git
synced 2026-04-20 07:15:33 +02:00
fixes for windows
This commit is contained in:
parent
01fd55ccae
commit
03d08bedf1
2 changed files with 4 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
call mtr.add_suppression("mysql/plugin.MYI");
|
call mtr.add_suppression("Incorrect key file for table.*mysql.plugin.MYI");
|
||||||
SET debug_dbug='+d,myisam_pretend_crashed_table_on_usage';
|
SET debug_dbug='+d,myisam_pretend_crashed_table_on_usage';
|
||||||
install plugin audit_null soname 'adt_null';
|
install plugin audit_null soname 'adt_null';
|
||||||
ERROR HY000: Incorrect key file for table './mysql/plugin.MYI'; try to repair it
|
ERROR HY000: Incorrect key file for table './mysql/plugin.MYI'; try to repair it
|
||||||
|
|
|
||||||
|
|
@ -5,19 +5,21 @@ if (!$ADT_NULL_SO) {
|
||||||
skip No NULL_AUDIT plugin;
|
skip No NULL_AUDIT plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
call mtr.add_suppression("mysql/plugin.MYI");
|
call mtr.add_suppression("Incorrect key file for table.*mysql.plugin.MYI");
|
||||||
|
|
||||||
#
|
#
|
||||||
# MySQL BUG#14485479 - INSTALL AUDIT PLUGIN HANGS IF WE TRY TO DISABLE AND ENABLED DURING DDL OPERATION
|
# MySQL BUG#14485479 - INSTALL AUDIT PLUGIN HANGS IF WE TRY TO DISABLE AND ENABLED DURING DDL OPERATION
|
||||||
# (a.k.a. audit event caused by the table access during audit plugin initialization)
|
# (a.k.a. audit event caused by the table access during audit plugin initialization)
|
||||||
#
|
#
|
||||||
SET debug_dbug='+d,myisam_pretend_crashed_table_on_usage';
|
SET debug_dbug='+d,myisam_pretend_crashed_table_on_usage';
|
||||||
|
--replace_result \\ /
|
||||||
--error 126
|
--error 126
|
||||||
install plugin audit_null soname 'adt_null';
|
install plugin audit_null soname 'adt_null';
|
||||||
SET debug_dbug='-d,myisam_pretend_crashed_table_on_usage';
|
SET debug_dbug='-d,myisam_pretend_crashed_table_on_usage';
|
||||||
|
|
||||||
install plugin audit_null soname 'adt_null';
|
install plugin audit_null soname 'adt_null';
|
||||||
SET debug_dbug='+d,myisam_pretend_crashed_table_on_usage';
|
SET debug_dbug='+d,myisam_pretend_crashed_table_on_usage';
|
||||||
|
--replace_result \\ /
|
||||||
--error 126
|
--error 126
|
||||||
uninstall plugin audit_null;
|
uninstall plugin audit_null;
|
||||||
SET debug_dbug='-d,myisam_pretend_crashed_table_on_usage';
|
SET debug_dbug='-d,myisam_pretend_crashed_table_on_usage';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue