66 * Copyright (c) 1994, Regents of the University of California
77 *
88 * IDENTIFICATION
9- * $Header: /cvsroot/pgsql/src/backend/executor/nodeSubplan.c,v 1.19 1999/12/29 22:57:17 momjian Exp $
9+ * $Header: /cvsroot/pgsql/src/backend/executor/nodeSubplan.c,v 1.20 2000/01/17 04:43:56 momjian Exp $
1010 *
1111 *-------------------------------------------------------------------------
1212 */
@@ -105,7 +105,7 @@ ExecSubPlan(SubPlan *node, List *pvar, ExprContext *econtext, bool *isNull)
105105{
106106/* cannot allow multiple input tuples for EXPR sublink */
107107if (found )
108- elog (ERROR ,"More than one tuple returned by subselect used as expression." );
108+ elog (ERROR ,"More than one tuple returned bya subselect used as an expression." );
109109found = true;
110110/*
111111 * 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)
126126
127127/* cannot allow multiple input tuples for MULTIEXPR sublink either */
128128if (subLinkType == MULTIEXPR_SUBLINK && found )
129- elog (ERROR ,"More than one tuple returned by subselect used as expression." );
129+ elog (ERROR ,"More than one tuple returned bya subselect used as an expression." );
130130
131131found = true;
132132
@@ -339,7 +339,7 @@ ExecSetParamPlan(SubPlan *node)
339339if (found &&
340340(sublink -> subLinkType == EXPR_SUBLINK ||
341341sublink -> subLinkType == MULTIEXPR_SUBLINK ))
342- elog (ERROR ,"ExecSetParamPlan: more than one tuple returnedby expression subselect" );
342+ elog (ERROR ,"More than one tuple returneda subselect used as an expression. " );
343343
344344found = true;
345345