mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
fixes for windows
This commit is contained in:
@ -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';
|
||||||
|
Reference in New Issue
Block a user