analyze_missing_indexes
Identifies columns without active indexes in a given table, optionally filtering to specific columns, to reveal missing index opportunities.
Instructions
For a given table, report which columns are covered by an active index (as the leading segment) and which are not. database: key from list_databases. table: table name from list_objects — automatically uppercased. filterColumns: optional comma-separated list of column names to check — useful when you only care about columns used in WHERE clauses or JOINs; omit to check all columns. Returns [{column, has_index, index (name or null), unique}].
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database | Yes | ||
| table | Yes | ||
| filterColumns | No |