config root man

Current Path : /home/usr.opt/mysql57/mysql-test/suite/query_rewrite_plugins/t/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //home/usr.opt/mysql57/mysql-test/suite/query_rewrite_plugins/t/engines.test

--echo #
--echo # Tests that it works to have the rules table in different engines.
--echo #

--source suite/query_rewrite_plugins/include/have_plugin_rewriter.inc
--source suite/query_rewrite_plugins/include/install_rewriter_with_optional_columns.inc

--echo # We don't need this column for this test, and digests aren't stable.
ALTER TABLE query_rewrite.rewrite_rules DROP COLUMN pattern_digest;

ALTER TABLE query_rewrite.rewrite_rules ENGINE = myisam;
SELECT engine FROM information_schema.tables WHERE table_name = 'rewrite_rules';

--source suite/query_rewrite_plugins/include/basic.inc

ALTER TABLE query_rewrite.rewrite_rules ENGINE = memory;
SELECT engine FROM information_schema.tables WHERE table_name = 'rewrite_rules';

--source suite/query_rewrite_plugins/include/basic.inc

--source suite/query_rewrite_plugins/include/uninstall_rewriter.inc

Man Man