mysql - 'events_statements_summary_by_digest table' is missing -


in mysql 5.6.27 default installation 'events_statements_summary_by_digest' table missing in 'performance_schema' database.

in fact, think more tables missing. did wrong during installation? how can fix this?

use performance_schema; show tables; +----------------------------------------------+ | tables_in_performance_schema                 | +----------------------------------------------+ | cond_instances                               | | events_waits_current                         | | events_waits_history                         | | events_waits_history_long                    | | events_waits_summary_by_instance             | | events_waits_summary_by_thread_by_event_name | | events_waits_summary_global_by_event_name    | | file_instances                               | | file_summary_by_event_name                   | | file_summary_by_instance                     | | mutex_instances                              | | performance_timers                           | | rwlock_instances                             | | setup_consumers                              | | setup_instruments                            | | setup_timers                                 | | threads                                      | +----------------------------------------------+ 17 rows in set (0.00 sec) 

the changelog 5.6.9 says

"if upgrade release of mysql earlier version, must run mysql_upgrade (and restart server) incorporate change performance_schema database. (bug #14075527)"

events_statements_summary_by_digest added in 5.6.5.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -