MCPcopy Create free account
hub / github.com/apache/cloudberry / appendReloptionsArrayAH

Function appendReloptionsArrayAH

src/bin/pg_dump/pg_dump.c:21418–21428  ·  view source on GitHub ↗

* Format a reloptions array and append it to the given buffer. * * "prefix" is prepended to the option names; typically it's "" or "toast.". */

Source from the content-addressed store, hash-verified

21416 * "prefix" is prepended to the option names; typically it's "" or "toast.".
21417 */
21418static void
21419appendReloptionsArrayAH(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/*

Callers 3

dumpTableSchemaFunction · 0.85
dumpConstraintFunction · 0.85
dumpRuleFunction · 0.85

Calls 1

appendReloptionsArrayFunction · 0.85

Tested by

no test coverage detected