MySQL Forums
Forum List  »  InnoDB

how to "disable" a engine?
Posted by: aaron chan
Date: February 07, 2017 01:33AM

The chapter "13.7.5.17 SHOW ENGINES Syntax" says there is a "support" column value "disabled",and "A value of DISABLED occurs either because the server was started with an option that disables the engine".
BUT when I disable the archive engine by adding "disabled_storage_engines="ARCHIVE"" in my config file,the "support" column value of engine archive is still "YES",not "DISABLED".
Is this a bug in mysql 5.7?

mysql> show variables like '%disabled%';
+--------------------------+---------+
| Variable_name | Value |
+--------------------------+---------+
| disabled_storage_engines | ARCHIVE |
+--------------------------+---------+
1 row in set, 1 warning (0.00 sec)
mysql> select support from information_schema.engines where engine='ARCHIVE';
+---------+
| support |
+---------+
| YES |
+---------+
1 row in set (0.02 sec)

Options: ReplyQuote


Subject
Views
Written By
Posted
how to "disable" a engine?
1278
February 07, 2017 01:33AM
691
February 07, 2017 04:03PM
762
February 08, 2017 05:16AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.