diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-01-07 21:07:04 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-01-07 21:07:04 +0000 |
commit | 679d39b9c8fbe8f5613879b11431d8152d85ec54 (patch) | |
tree | 9d2a87706e8585160143a1d647bb7558818ccc3d /src/backend/executor/execTuples.c | |
parent | e6c6146eb8129f1ea1e1f68ef739c13824357225 (diff) | |
download | postgresql-679d39b9c8fbe8f5613879b11431d8152d85ec54.tar.gz postgresql-679d39b9c8fbe8f5613879b11431d8152d85ec54.zip |
Goodbye ABORT. Hello ERROR for all errors.
Diffstat (limited to 'src/backend/executor/execTuples.c')
-rw-r--r-- | src/backend/executor/execTuples.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/execTuples.c b/src/backend/executor/execTuples.c index 40be0b3d5de..e8787efd6ce 100644 --- a/src/backend/executor/execTuples.c +++ b/src/backend/executor/execTuples.c @@ -14,7 +14,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/execTuples.c,v 1.14 1998/01/05 03:31:12 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/execTuples.c,v 1.15 1998/01/07 21:02:48 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -315,7 +315,7 @@ ExecAllocTableSlot(TupleTable table) * table->size = newsize; */ elog(NOTICE, "Plan requires more slots than are available"); - elog(ABORT, "send mail to your local executor guru to fix this"); + elog(ERROR, "send mail to your local executor guru to fix this"); } /* ---------------- @@ -859,7 +859,7 @@ NodeGetResultTupleSlot(Plan *node) * should never get here * ---------------- */ - elog(ABORT, "NodeGetResultTupleSlot: node not yet supported: %d ", + elog(ERROR, "NodeGetResultTupleSlot: node not yet supported: %d ", nodeTag(node)); return NULL; |