diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysql_performance_tables.sql | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scripts/mysql_performance_tables.sql b/scripts/mysql_performance_tables.sql index 42cde138f35..d4955782e4d 100644 --- a/scripts/mysql_performance_tables.sql +++ b/scripts/mysql_performance_tables.sql @@ -497,10 +497,9 @@ SET @cmd="CREATE TABLE performance_schema.host_cache(" ")ENGINE=PERFORMANCE_SCHEMA;"; SET @str = IF(@have_pfs = 1, @cmd, 'SET @dummy = 0'); -# Host cache is disable until host cache code is merged from 5.6 -#PREPARE stmt FROM @str; -#EXECUTE stmt; -#DROP PREPARE stmt; +PREPARE stmt FROM @str; +EXECUTE stmt; +DROP PREPARE stmt; -- -- TABLE MUTEX_INSTANCES |