What problem does it solve? MariaDB's SHOW statement family has non-standard spellings, a generic plugin-table fallback, and filtering rules that differ from standard SQL, so LLM-generated SHOW statements often use outdated MASTER/SLAVE terminology or assume LIKE/WHERE work everywhere. ## Core Features & Use Cases - Replication SHOW Terminology: Maps legacy MASTER/SLAVE spellings to preferred BINLOG/REPLICA forms while noting that status counters still use slave/master naming. - Extended SHOW Filtering: Documents exactly which SHOW forms accept LIKE/WHERE clauses and which use LIMIT or no filter at all. - Live Query Diagnostics: Covers SHOW EXPLAIN and SHOW ANALYZE for inspecting a query running in another connection, plus plugin-registered SHOW variants like USER_STATISTICS and WSREP_MEMBERSHIP. - Use Case: When reviewing a migration script containing SHOW MASTER STATUS, rewrite it as SHOW BINLOG STATUS and verify the monitoring queries still match status counters by name. ## Quick Start Ask the AI to write or review a MariaDB SHOW statement, such as generating the correct syntax to check replica status and filter session variables.