* ExplainQueryText - * add a "Query Text" node that contains the actual text of the query * * The caller should have set up the options fields of *es, as well as * initializing the output buffer es->str. * */
| 1289 | * |
| 1290 | */ |
| 1291 | void |
| 1292 | ExplainQueryText(ExplainState *es, QueryDesc *queryDesc) |
| 1293 | { |
| 1294 | if (queryDesc->sourceText) |
| 1295 | ExplainPropertyText("Query Text", queryDesc->sourceText, es); |
| 1296 | } |
| 1297 | |
| 1298 | /* |
| 1299 | * report_triggers - |
no test coverage detected