* Format a reloptions array and append it to the given buffer. * * "prefix" is prepended to the option names; typically it's "" or "toast.". */
| 21416 | * "prefix" is prepended to the option names; typically it's "" or "toast.". |
| 21417 | */ |
| 21418 | static void |
| 21419 | appendReloptionsArrayAH(PQExpBuffer buffer, const char *reloptions, |
| 21420 | const char *prefix, Archive *fout) |
| 21421 | { |
| 21422 | bool res; |
| 21423 | |
| 21424 | res = appendReloptionsArray(buffer, reloptions, prefix, fout->encoding, |
| 21425 | fout->std_strings); |
| 21426 | if (!res) |
| 21427 | pg_log_warning("could not parse reloptions array"); |
| 21428 | } |
| 21429 | |
| 21430 | /* START MPP ADDITION */ |
| 21431 | /* |
no test coverage detected