From feb4f44d296b88b7f0723f4a4f3945a371276e0b Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 25 Sep 2003 06:58:07 +0000 Subject: Message editing: remove gratuitous variations in message wording, standardize terms, add some clarifications, fix some untranslatable attempts at dynamic message building. --- src/backend/executor/nodeSubplan.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/backend/executor/nodeSubplan.c') diff --git a/src/backend/executor/nodeSubplan.c b/src/backend/executor/nodeSubplan.c index 23b0cd3bf3d..f1b96ee5d81 100644 --- a/src/backend/executor/nodeSubplan.c +++ b/src/backend/executor/nodeSubplan.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/nodeSubplan.c,v 1.55 2003/08/19 01:13:40 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/nodeSubplan.c,v 1.56 2003/09/25 06:57:59 petere Exp $ * *------------------------------------------------------------------------- */ @@ -287,7 +287,7 @@ ExecScanSubPlan(SubPlanState *node, if (found) ereport(ERROR, (errcode(ERRCODE_CARDINALITY_VIOLATION), - errmsg("more than one tuple returned by a subselect used as an expression"))); + errmsg("more than one row returned by a subquery used as an expression"))); found = true; /* @@ -329,7 +329,7 @@ ExecScanSubPlan(SubPlanState *node, if (subLinkType == MULTIEXPR_SUBLINK && found) ereport(ERROR, (errcode(ERRCODE_CARDINALITY_VIOLATION), - errmsg("more than one tuple returned by a subselect used as an expression"))); + errmsg("more than one row returned by a subquery used as an expression"))); found = true; @@ -963,7 +963,7 @@ ExecSetParamPlan(SubPlanState *node, ExprContext *econtext) subLinkType == MULTIEXPR_SUBLINK)) ereport(ERROR, (errcode(ERRCODE_CARDINALITY_VIOLATION), - errmsg("more than one tuple returned by a subselect used as an expression"))); + errmsg("more than one row returned by a subquery used as an expression"))); found = true; -- cgit v1.2.3