mirror of
https://github.com/postgres/postgres.git
synced 2025-04-29 13:56:47 +03:00
Correct typo in error message.
This commit is contained in:
parent
1d5df1547a
commit
aafe86d995
@ -7,7 +7,7 @@
|
|||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* 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 &&
|
if (found &&
|
||||||
(sublink->subLinkType == EXPR_SUBLINK ||
|
(sublink->subLinkType == EXPR_SUBLINK ||
|
||||||
sublink->subLinkType == MULTIEXPR_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;
|
found = true;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user