File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11489,7 +11489,7 @@ dumpCast(Archive *fout, CastInfo *cast)
11489
11489
{
11490
11490
funcInfo = findFuncByOid(cast->castfunc);
11491
11491
if (funcInfo == NULL)
11492
- exit_horribly(NULL, "unable to find function definition for OID %u",
11492
+ exit_horribly(NULL, "could not find function definition for function with OID %u\n ",
11493
11493
cast->castfunc);
11494
11494
}
11495
11495
@@ -11599,14 +11599,14 @@ dumpTransform(Archive *fout, TransformInfo *transform)
11599
11599
{
11600
11600
fromsqlFuncInfo = findFuncByOid(transform->trffromsql);
11601
11601
if (fromsqlFuncInfo == NULL)
11602
- exit_horribly(NULL, "unable to find function definition for OID %u",
11602
+ exit_horribly(NULL, "could not find function definition for function with OID %u\n ",
11603
11603
transform->trffromsql);
11604
11604
}
11605
11605
if (OidIsValid(transform->trftosql))
11606
11606
{
11607
11607
tosqlFuncInfo = findFuncByOid(transform->trftosql);
11608
11608
if (tosqlFuncInfo == NULL)
11609
- exit_horribly(NULL, "unable to find function definition for OID %u",
11609
+ exit_horribly(NULL, "could not find function definition for function with OID %u\n ",
11610
11610
transform->trftosql);
11611
11611
}
11612
11612
You can’t perform that action at this time.
0 commit comments