@@ -11489,7 +11489,7 @@ dumpCast(Archive *fout, CastInfo *cast)
1148911489{
1149011490funcInfo = findFuncByOid(cast->castfunc);
1149111491if (funcInfo == NULL)
11492- exit_horribly(NULL, "unable to find function definition for OID %u",
11492+ exit_horribly(NULL, "could not find function definition forfunction with OID %u\n ",
1149311493 cast->castfunc);
1149411494}
1149511495
@@ -11599,14 +11599,14 @@ dumpTransform(Archive *fout, TransformInfo *transform)
1159911599{
1160011600fromsqlFuncInfo = findFuncByOid(transform->trffromsql);
1160111601if (fromsqlFuncInfo == NULL)
11602- exit_horribly(NULL, "unable to find function definition for OID %u",
11602+ exit_horribly(NULL, "could not find function definition forfunction with OID %u\n ",
1160311603 transform->trffromsql);
1160411604}
1160511605if (OidIsValid(transform->trftosql))
1160611606{
1160711607tosqlFuncInfo = findFuncByOid(transform->trftosql);
1160811608if (tosqlFuncInfo == NULL)
11609- exit_horribly(NULL, "unable to find function definition for OID %u",
11609+ exit_horribly(NULL, "could not find function definition forfunction with OID %u\n ",
1161011610 transform->trftosql);
1161111611}
1161211612