get_hg_execution_plan
Analyze and retrieve the execution plan with runtime statistics for a SQL query in Hologres databases to optimize performance and debug queries effectively.
Instructions
Get actual execution plan with runtime statistics 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"
}