From: Tom Lane Date: Tue, 21 Mar 2000 04:20:45 +0000 (+0000) Subject: Correct typo in error message. X-Git-Tag: REL7_0~374 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aafe86d9959f1c5adfc1d0c6f8ab54609017f182;p=postgresql Correct typo in error message. --- diff --git a/src/backend/executor/nodeSubplan.c b/src/backend/executor/nodeSubplan.c index c567276575..d21a4478c4 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.22 2000/03/09 05:15:33 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/nodeSubplan.c,v 1.23 2000/03/21 04:20:45 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -336,7 +336,7 @@ ExecSetParamPlan(SubPlan *node) if (found && (sublink->subLinkType == EXPR_SUBLINK || sublink->subLinkType == MULTIEXPR_SUBLINK)) - elog(ERROR, "More than one tuple returned a subselect used as an expression."); + elog(ERROR, "More than one tuple returned by a subselect used as an expression."); found = true;