1--source include/have_plugin_auth.inc
2--source include/not_embedded.inc
3
4--echo #
5--echo # Bug #11766001: ALLOW MULTIPLE --PLUGIN-LOAD OPTIONS
6--echo #
7
8--echo # test multiple consecutive --plugin-load-add options
9--echo # success : both test_plugin_server and qa_auth_server
10--echo #   should be present
11SELECT PLUGIN_NAME, PLUGIN_STATUS FROM INFORMATION_SCHEMA.PLUGINS
12  WHERE PLUGIN_NAME IN ('test_plugin_server', 'qa_auth_server')
13  ORDER BY 1;
14SELECT * FROM mysql.plugin ORDER BY name;
15