mirror of
https://github.com/postgres/postgres.git
synced 2025-07-21 16:02:15 +03:00
Change elog(WARN) to elog(ERROR) and elog(ABORT).
This commit is contained in:
@ -14,7 +14,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/execTuples.c,v 1.13 1997/12/18 12:53:42 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/execTuples.c,v 1.14 1998/01/05 03:31:12 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -315,7 +315,7 @@ ExecAllocTableSlot(TupleTable table)
|
||||
* table->size = newsize;
|
||||
*/
|
||||
elog(NOTICE, "Plan requires more slots than are available");
|
||||
elog(WARN, "send mail to your local executor guru to fix this");
|
||||
elog(ABORT, "send mail to your local executor guru to fix this");
|
||||
}
|
||||
|
||||
/* ----------------
|
||||
@ -859,7 +859,7 @@ NodeGetResultTupleSlot(Plan *node)
|
||||
* should never get here
|
||||
* ----------------
|
||||
*/
|
||||
elog(WARN, "NodeGetResultTupleSlot: node not yet supported: %d ",
|
||||
elog(ABORT, "NodeGetResultTupleSlot: node not yet supported: %d ",
|
||||
nodeTag(node));
|
||||
|
||||
return NULL;
|
||||
|
Reference in New Issue
Block a user