diff options
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index be70ef33fdf..87919b4dbab 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -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; } |