From afcb0c97efc58459bcbbe795f42d8b7be414e076 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 6 Feb 2017 09:47:39 -0500 Subject: [PATCH] Add missing newline to error messages Also improve the message style a bit while we're here. --- src/bin/pg_dump/pg_dump.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 4d22802912..9afacdb900 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -11489,7 +11489,7 @@ dumpCast(Archive *fout, CastInfo *cast) { funcInfo = findFuncByOid(cast->castfunc); if (funcInfo == NULL) - exit_horribly(NULL, "unable to find function definition for OID %u", + exit_horribly(NULL, "could not find function definition for function with OID %u\n", cast->castfunc); } @@ -11599,14 +11599,14 @@ dumpTransform(Archive *fout, TransformInfo *transform) { fromsqlFuncInfo = findFuncByOid(transform->trffromsql); if (fromsqlFuncInfo == NULL) - exit_horribly(NULL, "unable to find function definition for OID %u", + exit_horribly(NULL, "could not find function definition for function with OID %u\n", transform->trffromsql); } if (OidIsValid(transform->trftosql)) { tosqlFuncInfo = findFuncByOid(transform->trftosql); if (tosqlFuncInfo == NULL) - exit_horribly(NULL, "unable to find function definition for OID %u", + exit_horribly(NULL, "could not find function definition for function with OID %u\n", transform->trftosql); }