1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-12 21:01:52 +03:00

More optimizer renaming HInfo -> HashInfo.

This commit is contained in:
Bruce Momjian
1999-02-04 01:47:02 +00:00
parent 9322950aa4
commit 18fbe4142f
11 changed files with 61 additions and 61 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.46 1999/02/03 21:16:18 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.47 1999/02/04 01:46:54 momjian Exp $
*
* NOTES
* Most of the read functions for plan nodes are tested. (In fact, they
@ -1906,19 +1906,19 @@ _readJoinMethod()
}
/* ----------------
* _readHInfo
* _readHashInfo
*
* HInfo is a subclass of JoinMethod.
* HashInfo is a subclass of JoinMethod.
* ----------------
*/
static HInfo *
_readHInfo()
static HashInfo *
_readHashInfo()
{
HInfo *local_node;
HashInfo *local_node;
char *token;
int length;
local_node = makeNode(HInfo);
local_node = makeNode(HashInfo);
token = lsptok(NULL, &length); /* get :hashop */
token = lsptok(NULL, &length); /* now read it */
@ -2094,7 +2094,7 @@ parsePlanString(void)
else if (!strncmp(token, "JOININFO", length))
return_value = _readJoinInfo();
else if (!strncmp(token, "HINFO", length))
return_value = _readHInfo();
return_value = _readHashInfo();
else if (!strncmp(token, "ITER", length))
return_value = _readIter();
else if (!strncmp(token, "QUERY", length))