1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

Remove no-longer-used fields in Hash and HashJoin nodes.

This commit is contained in:
Tom Lane
1999-05-18 21:34:29 +00:00
parent 26069a58e8
commit 353d36f979
6 changed files with 21 additions and 87 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.79 1999/05/12 15:01:31 wieck Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.80 1999/05/18 21:34:27 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -357,10 +357,6 @@ _copyHashJoin(HashJoin *from)
newnode->hashjoinop = from->hashjoinop;
/* both are unused !.. */
newnode->hashjointablekey = from->hashjointablekey;
newnode->hashjointablesize = from->hashjointablesize;
return newnode;
}
@ -545,10 +541,6 @@ _copyHash(Hash *from)
*/
Node_Copy(from, newnode, hashkey);
/* both are unused !.. */
newnode->hashtablekey = from->hashtablekey;
newnode->hashtablesize = from->hashtablesize;
return newnode;
}