The document describes a new ANALYZE statement in MariaDB 10.1 that provides execution statistics for a SQL statement. ANALYZE runs the statement and collects statistics, similar to EXPLAIN ANALYZE in PostgreSQL. It produces an EXPLAIN plan with additional columns showing real rows, filtering percentages, and time spent. The FORMAT=JSON option outputs the results as a JSON document containing detailed timing and resource usage statistics for each step. This allows more complete analysis of how a query plan was executed versus global counters.