@@ -4563,7 +4563,7 @@ dumpSubscription(Archive *fout, const SubscriptionInfo *subinfo)
4563
4563
4564
4564
/* Build list of quoted publications and append them to query. */
4565
4565
if (!parsePGArray(subinfo->subpublications, &pubnames, &npubnames))
4566
- fatal("could not parse subpublications array");
4566
+ fatal("could not parse %s array", "subpublications ");
4567
4567
4568
4568
publications = createPQExpBuffer();
4569
4569
for (i = 0; i < npubnames; i++)
@@ -12238,7 +12238,7 @@ dumpFunc(Archive *fout, const FuncInfo *finfo)
12238
12238
if (!parsePGArray(proallargtypes, &allargtypes, &nitems) ||
12239
12239
nitems < finfo->nargs)
12240
12240
{
12241
- pg_log_warning("could not parse proallargtypes array");
12241
+ pg_log_warning("could not parse %s array", "proallargtypes ");
12242
12242
if (allargtypes)
12243
12243
free(allargtypes);
12244
12244
allargtypes = NULL;
@@ -12254,7 +12254,7 @@ dumpFunc(Archive *fout, const FuncInfo *finfo)
12254
12254
if (!parsePGArray(proargmodes, &argmodes, &nitems) ||
12255
12255
nitems != nallargs)
12256
12256
{
12257
- pg_log_warning("could not parse proargmodes array");
12257
+ pg_log_warning("could not parse %s array", "proargmodes ");
12258
12258
if (argmodes)
12259
12259
free(argmodes);
12260
12260
argmodes = NULL;
@@ -12268,7 +12268,7 @@ dumpFunc(Archive *fout, const FuncInfo *finfo)
12268
12268
if (!parsePGArray(proargnames, &argnames, &nitems) ||
12269
12269
nitems != nallargs)
12270
12270
{
12271
- pg_log_warning("could not parse proargnames array");
12271
+ pg_log_warning("could not parse %s array", "proargnames ");
12272
12272
if (argnames)
12273
12273
free(argnames);
12274
12274
argnames = NULL;
@@ -12278,7 +12278,7 @@ dumpFunc(Archive *fout, const FuncInfo *finfo)
12278
12278
if (proconfig && *proconfig)
12279
12279
{
12280
12280
if (!parsePGArray(proconfig, &configitems, &nconfigitems))
12281
- fatal("could not parse proconfig array");
12281
+ fatal("could not parse %s array", "proconfig ");
12282
12282
}
12283
12283
else
12284
12284
{
@@ -18190,9 +18190,9 @@ processExtensionTables(Archive *fout, ExtensionInfo extinfo[],
18190
18190
int j;
18191
18191
18192
18192
if (!parsePGArray(extconfig, &extconfigarray, &nconfigitems))
18193
- fatal("could not parse extension configuration array");
18193
+ fatal("could not parse %s array", "extconfig ");
18194
18194
if (!parsePGArray(extcondition, &extconditionarray, &nconditionitems))
18195
- fatal("could not parse extension condition array");
18195
+ fatal("could not parse %s array", "extcondition ");
18196
18196
if (nconfigitems != nconditionitems)
18197
18197
fatal("mismatched number of configurations and conditions for extension");
18198
18198
@@ -18820,5 +18820,5 @@ appendReloptionsArrayAH(PQExpBuffer buffer, const char *reloptions,
18820
18820
res = appendReloptionsArray(buffer, reloptions, prefix, fout->encoding,
18821
18821
fout->std_strings);
18822
18822
if (!res)
18823
- pg_log_warning("could not parse reloptions array");
18823
+ pg_log_warning("could not parse %s array", "reloptions ");
18824
18824
}
0 commit comments