mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Description
The test, binlog.binlog_spurious_ddl_errors was failing on pb2 at the statement "UNINSTALL PLUGIN example;" with this warning: "Warning 1620 Plugin is busy and will be uninstalled on shutdown " Fix Spurious warnings occur in the test since we do not empty the Query cache, used by the example plugin at the time of creating tables using the plugin. Hence, the query chache is flushed before uninstalling the plugin. Also, as part of running the test across platforms, the plugin installation script is changed.
This commit is contained in:
@ -48,6 +48,7 @@ DROP TABLE t_stmt;
|
||||
################################################################################
|
||||
# CLEAN UP #
|
||||
################################################################################
|
||||
flush tables;
|
||||
UNINSTALL PLUGIN example;
|
||||
SET @@global.binlog_format = @old_binlog_format;
|
||||
SET @@session.binlog_format = @old_binlog_format;
|
||||
|
Reference in New Issue
Block a user