ANALYZE: Interpreting rows and filtered members
Understand the r_rows and r_filtered fields in analysis output. Learn how these actual runtime counters compare to the optimizer's rows and filtered estimates.
Index-based access method
"table": {
"table_name": "t1",
"access_type": "range",
"possible_keys": ...,
"key": "INDEX1",
...
"rowid_filter": {
...
"r_selectivity_pct": n.nnn,
},
...
"rows": 123,
"r_rows": 125,
...
"filtered": 8.476269722,
"r_filtered": 100,
"index_condition": "cond1",
"attached_condition": "cond2"
}Access diagram

Statistics values in MariaDB before 11.5

Statistics values in MariaDB 11.5 and later versions

ANALYZE output members
Last updated
Was this helpful?

