v.25.9Improvement
Limit query plan description
Limit query plan description in theEXPLAINquery. Do not calculate the description for queries other thanEXPLAIN. Added a settingquery_plan_max_step_description_length. #86741 (Nikolai Kochetov).
Why it matters
This feature prevents excessive calculation and output size of query plan descriptions by restricting their length only forEXPLAIN queries. It optimizes performance and readability, avoiding unnecessary overhead for other query types.How to use it
Set thequery_plan_max_step_description_length setting to the desired maximum length of each step description in EXPLAIN query outputs. This setting controls how much detail is included when you run an EXPLAIN statement.