diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-01-17 04:43:56 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-01-17 04:43:56 +0000 |
commit | e3354ab32061bdd0892ed0323a46b561b82860bd (patch) | |
tree | 048256cc1aa64d8f39ae76609d5e20a8bad14bb4 /src/backend/executor/nodeSubplan.c | |
parent | 72cec8623540032505965ebca3710b7c745dfdda (diff) | |
download | postgresql-e3354ab32061bdd0892ed0323a46b561b82860bd.tar.gz postgresql-e3354ab32061bdd0892ed0323a46b561b82860bd.zip |
Update subquery error message.
Diffstat (limited to 'src/backend/executor/nodeSubplan.c')
-rw-r--r-- | src/backend/executor/nodeSubplan.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/executor/nodeSubplan.c b/src/backend/executor/nodeSubplan.c index 0d41de06d4c..319cd01d1a7 100644 --- a/src/backend/executor/nodeSubplan.c +++ b/src/backend/executor/nodeSubplan.c @@ -6,7 +6,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/nodeSubplan.c,v 1.19 1999/12/29 22:57:17 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/nodeSubplan.c,v 1.20 2000/01/17 04:43:56 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -105,7 +105,7 @@ ExecSubPlan(SubPlan *node, List *pvar, ExprContext *econtext, bool *isNull) { /* cannot allow multiple input tuples for EXPR sublink */ if (found) - elog(ERROR, "More than one tuple returned by subselect used as expression."); + elog(ERROR, "More than one tuple returned by a subselect used as an expression."); found = true; /* * 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) /* cannot allow multiple input tuples for MULTIEXPR sublink either */ if (subLinkType == MULTIEXPR_SUBLINK && found) - elog(ERROR, "More than one tuple returned by subselect used as expression."); + elog(ERROR, "More than one tuple returned by a subselect used as an expression."); found = true; @@ -339,7 +339,7 @@ ExecSetParamPlan(SubPlan *node) if (found && (sublink->subLinkType == EXPR_SUBLINK || sublink->subLinkType == MULTIEXPR_SUBLINK)) - elog(ERROR, "ExecSetParamPlan: more than one tuple returned by expression subselect"); + elog(ERROR, "More than one tuple returned a subselect used as an expression."); found = true; |