6
6
* Copyright (c) 1994, Regents of the University of California
7
7
*
8
8
* IDENTIFICATION
9
- * $Header: /cvsroot/pgsql/src/backend/executor/nodeSubplan.c,v 1.18 1999/12/16 22:19:44 wieck Exp $
9
+ * $Header: /cvsroot/pgsql/src/backend/executor/nodeSubplan.c,v 1.19 1999/12/29 22:57:17 momjian Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
@@ -105,7 +105,7 @@ ExecSubPlan(SubPlan *node, List *pvar, ExprContext *econtext, bool *isNull)
105
105
{
106
106
/* cannot allow multiple input tuples for EXPR sublink */
107
107
if (found )
108
- elog (ERROR ,"ExecSubPlan: more than one tuple returned byexpression subselect" );
108
+ elog (ERROR ,"More than one tuple returned by subselect used as expression. " );
109
109
found = true;
110
110
/*
111
111
* We need to copy the subplan's tuple in case the result is of
@@ -126,7 +126,7 @@ ExecSubPlan(SubPlan *node, List *pvar, ExprContext *econtext, bool *isNull)
126
126
127
127
/* cannot allow multiple input tuples for MULTIEXPR sublink either */
128
128
if (subLinkType == MULTIEXPR_SUBLINK && found )
129
- elog (ERROR ,"ExecSubPlan: more than one tuple returned byexpression subselect" );
129
+ elog (ERROR ,"More than one tuple returned by subselect used as expression. " );
130
130
131
131
found = true;
132
132