Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
649ffe16
Commit
649ffe16
authored
Dec 29, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve subquery error message, now says "More than one tuple returned
by subselect used as expression."
parent
e1b212ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
10 deletions
+3
-10
doc/README.NT
doc/README.NT
+0
-7
src/backend/executor/nodeSubplan.c
src/backend/executor/nodeSubplan.c
+3
-3
No files found.
doc/README.NT
View file @
649ffe16
From: "Joost Kraaijeveld" <JKraaijeveld@askesis.nl>
To: "Pgsql-Ports@Postgresql. Org" <pgsql-ports@postgreSQL.org>
Subject: RE: [PORTS] Re: psql under win32
Date: Wed, 21 Apr 1999 07:07:47 +0200
Message-ID: <000001be8bb4$e59b0ab0$0300a8c0@abraracourcix.askesis.nl>
MIME-Version: 1.0
Installing PostgreSQL on NT:
---------------------------------------------------------------------------
...
...
src/backend/executor/nodeSubplan.c
View file @
649ffe16
...
...
@@ -6,7 +6,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSubplan.c,v 1.1
8 1999/12/16 22:19:44 wieck
Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSubplan.c,v 1.1
9 1999/12/29 22:57:17 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
,
"
ExecSubPlan: more than one tuple returned by expression subselect
"
);
elog
(
ERROR
,
"
More than one tuple returned by subselect used as 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
,
"
ExecSubPlan: more than one tuple returned by expression subselect
"
);
elog
(
ERROR
,
"
More than one tuple returned by subselect used as expression.
"
);
found
=
true
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment