From 679d39b9c8fbe8f5613879b11431d8152d85ec54 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 7 Jan 1998 21:07:04 +0000 Subject: Goodbye ABORT. Hello ERROR for all errors. --- src/backend/executor/execTuples.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/executor/execTuples.c') 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; -- cgit v1.2.3