/* Build list of quoted publications and append them to query. */
if (!parsePGArray(subinfo->subpublications, &pubnames, &npubnames))
- fatal("could not parse subpublications array");
+ fatal("could not parse %s array", "subpublications");
publications = createPQExpBuffer();
for (i = 0; i < npubnames; i++)
if (!parsePGArray(proallargtypes, &allargtypes, &nitems) ||
nitems < finfo->nargs)
{
- pg_log_warning("could not parse proallargtypes array");
+ pg_log_warning("could not parse %s array", "proallargtypes");
if (allargtypes)
free(allargtypes);
allargtypes = NULL;
if (!parsePGArray(proargmodes, &argmodes, &nitems) ||
nitems != nallargs)
{
- pg_log_warning("could not parse proargmodes array");
+ pg_log_warning("could not parse %s array", "proargmodes");
if (argmodes)
free(argmodes);
argmodes = NULL;
if (!parsePGArray(proargnames, &argnames, &nitems) ||
nitems != nallargs)
{
- pg_log_warning("could not parse proargnames array");
+ pg_log_warning("could not parse %s array", "proargnames");
if (argnames)
free(argnames);
argnames = NULL;
if (proconfig && *proconfig)
{
if (!parsePGArray(proconfig, &configitems, &nconfigitems))
- fatal("could not parse proconfig array");
+ fatal("could not parse %s array", "proconfig");
}
else
{
int j;
if (!parsePGArray(extconfig, &extconfigarray, &nconfigitems))
- fatal("could not parse extension configuration array");
+ fatal("could not parse %s array", "extconfig");
if (!parsePGArray(extcondition, &extconditionarray, &nconditionitems))
- fatal("could not parse extension condition array");
+ fatal("could not parse %s array", "extcondition");
if (nconfigitems != nconditionitems)
fatal("mismatched number of configurations and conditions for extension");
res = appendReloptionsArray(buffer, reloptions, prefix, fout->encoding,
fout->std_strings);
if (!res)
- pg_log_warning("could not parse reloptions array");
+ pg_log_warning("could not parse %s array", "reloptions");
}