* nodeToString - * returns the ascii representation of the Node as a palloc'd string */
| 5407 | * returns the ascii representation of the Node as a palloc'd string |
| 5408 | */ |
| 5409 | char * |
| 5410 | nodeToString(const void *obj) |
| 5411 | { |
| 5412 | StringInfoData str; |
| 5413 | |
| 5414 | /* see stringinfo.h for an explanation of this maneuver */ |
| 5415 | initStringInfo(&str); |
| 5416 | outNode(&str, obj); |
| 5417 | return str.data; |
| 5418 | } |
| 5419 | |
| 5420 | /* |
| 5421 | * bmsToString - |
no test coverage detected