get_hg_query_plan
Retrieve the execution plan for a SQL query in the Hologres database to analyze and optimize query performance using the Hologres MCP Server.
Instructions
Get query plan for a SQL query in Hologres database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The SQL query to analyze in Hologres database |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The SQL query to analyze in Hologres database",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}