src/backend/commands/explain.c/**执行计划输出结果的结构体*/typedef struct ExplainState{ StringInfo str; * output buffer */ * options */ bool verbose; * be verbose */ bool analyze; * print actual times */ bool costs; * print estimated costs */ bool buffers; * 打印缓冲区使用情况 */ ...