mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
Rename Rel to RelOptInfo.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.32 1998/07/15 14:54:34 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.33 1998/07/18 04:22:26 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Most of the read functions for plan nodes are tested. (In fact, they
|
||||
@ -1221,14 +1221,14 @@ _readEState()
|
||||
* _readRel
|
||||
* ----------------
|
||||
*/
|
||||
static Rel *
|
||||
static RelOptInfo *
|
||||
_readRel()
|
||||
{
|
||||
Rel *local_node;
|
||||
RelOptInfo *local_node;
|
||||
char *token;
|
||||
int length;
|
||||
|
||||
local_node = makeNode(Rel);
|
||||
local_node = makeNode(RelOptInfo);
|
||||
|
||||
token = lsptok(NULL, &length); /* get :relids */
|
||||
local_node->relids =
|
||||
@ -1990,9 +1990,9 @@ parsePlanString(void)
|
||||
return_value = _readParam();
|
||||
else if (!strncmp(token, "ESTATE", length))
|
||||
return_value = _readEState();
|
||||
else if (!strncmp(token, "REL", length))
|
||||
else if (!strncmp(token, "RELOPTINFO", length))
|
||||
return_value = _readRel();
|
||||
else if (!strncmp(token, "TLE", length))
|
||||
else if (!strncmp(token, "TARGETENTRY", length))
|
||||
return_value = _readTargetEntry();
|
||||
else if (!strncmp(token, "RTE", length))
|
||||
return_value = _readRangeTblEntry();
|
||||
|
Reference in New Issue
Block a user