mirror of
https://github.com/postgres/postgres.git
synced 2025-07-11 10:01:57 +03:00
Support for subselects.
(Have to re-visit readfuncs.c)
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.24 1998/02/10 16:03:23 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.25 1998/02/13 03:27:47 vadim Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Most of the read functions for plan nodes are tested. (In fact, they
|
||||
@ -777,6 +777,10 @@ _readExpr()
|
||||
{
|
||||
local_node->opType = NOT_EXPR;
|
||||
}
|
||||
else if (!strncmp(token, "subp", 4))
|
||||
{
|
||||
local_node->opType = SUBPLAN_EXPR;
|
||||
}
|
||||
|
||||
token = lsptok(NULL, &length); /* eat :oper */
|
||||
local_node->oper = nodeRead(true);
|
||||
|
Reference in New Issue
Block a user