Provides EXPLAIN ANALYZE workflow for identifying missing indexes, sequential scans, and query plan issues.
94
94%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
EXPLAIN ANALYZE on DELETE, UPDATE, or INSERT statements in production without explicit user approval. EXPLAIN ANALYZE executes the statement.EXPLAIN without the ANALYZE and FORMAT JSON options. Plain EXPLAIN without ANALYZE provides only estimates, which are insufficient for debugging.CREATE INDEX without CONCURRENTLY on production tables. Non-concurrent index creation locks the table.BUFFERS option. Buffer statistics are mandatory for diagnosing cache-miss issues.EXPLAIN (ANALYZE, BUFFERS, FORMAT JSON) via MCP execute_sql.ANALYZE on the affected table.execute_sql tool, not through direct psql sessions.