diff options
Diffstat (limited to 'src/backend/utils/sort/psort.c')
-rw-r--r-- | src/backend/utils/sort/psort.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/utils/sort/psort.c b/src/backend/utils/sort/psort.c index e8677066d4c..d6220db9e2d 100644 --- a/src/backend/utils/sort/psort.c +++ b/src/backend/utils/sort/psort.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.29 1998/01/05 03:34:56 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.30 1998/01/07 21:06:39 momjian Exp $ * * NOTES * Sorts the first relation into the second relation. @@ -205,7 +205,7 @@ inittapes(Sort * node) PS(node)->Tape[0].tp_prev = tp; if (PS(node)->TapeRange <= 1) - elog(ABORT, "inittapes: Could only allocate %d < 3 tapes\n", + elog(ERROR, "inittapes: Could only allocate %d < 3 tapes\n", PS(node)->TapeRange + 1); PS(node)->Level = 1; @@ -1009,7 +1009,7 @@ gettape() file = AllocateFile(tp->tl_name, "w+"); if (file == NULL) - elog(ABORT, "Open: %s in %s line %d, %s", tp->tl_name, + elog(ERROR, "Open: %s in %s line %d, %s", tp->tl_name, __FILE__, __LINE__, strerror(errno)); tp->tl_fd = fileno(file); @@ -1034,7 +1034,7 @@ resettape(FILE * file) for (tp = Tapes; tp != NULL && tp->tl_fd != fd; tp = tp->tl_next) ; if (tp == NULL) - elog(ABORT, "resettape: tape not found"); + elog(ERROR, "resettape: tape not found"); file = freopen(tp->tl_name, "w+", file); if (file == NULL) |