Today, yet another blog post about
improvements in MySQL 8.0 related to
Performance_Schema. Before MySQL 8.0 it was not
always easy to get an example of the queries you could find in
Performance_Schema when looking for statements
summaries. You had to link several tables (even from
sys) to achieve this goal as I explained it in
this post.
Now in MySQL 8.0, we have changed the table events_statements_summary_by_digest.
This table now contains 6 extra columns:
-
QUANTILE_95: stores the 95th percentile of the statement latency, in …