用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.5 KiB

3 months ago
--source include/have_debug_sync.inc
--source include/have_debug.inc
--source include/have_example_component.inc
--echo # Bug #24660436 MYSQL.COMPONENT HAVE MULTIPLE ROWS AFTER
--echo # CANCELLING INSTALL/UNINSTALL WITH CTRL+C
let $connection_id= `SELECT CONNECTION_ID()`;
INSTALL COMPONENT "file://component_example_component1", "file://component_example_component3", "file://component_example_component2";
SET DEBUG_SYNC='before_ha_index_read_idx_map SIGNAL kill_query WAIT_FOR nothing TIMEOUT 10';
send UNINSTALL COMPONENT "file://component_example_component1", "file://component_example_component3", "file://component_example_component2";
connect(con1, localhost, root,,);
SET DEBUG_SYNC='now WAIT_FOR kill_query';
--replace_result $connection_id ID
--eval KILL QUERY $connection_id;
connection default;
--error ER_QUERY_INTERRUPTED
--reap
--echo Since UNINSTALL component failed because of "Query execution
--echo was interrupted" error. This should display three components.
SELECT COUNT(*) FROM mysql.component;
--echo Below INSTALL component should fail after the fix
--error ER_COMPONENTS_CANT_LOAD
INSTALL COMPONENT "file://component_example_component1", "file://component_example_component3", "file://component_example_component2";
--echo Should display three components
SELECT COUNT(*) FROM mysql.component;
UNINSTALL COMPONENT "file://component_example_component1", "file://component_example_component3", "file://component_example_component2";
disconnect con1;