aboutsummaryrefslogtreecommitdiff
path: root/src/backend/nodes/copyfuncs.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>1999-05-18 21:34:29 +0000
committerTom Lane <tgl@sss.pgh.pa.us>1999-05-18 21:34:29 +0000
commit353d36f97974dd5564d8cac6a1e01d78c623a408 (patch)
treec561aa760d3dd9e58fb45d4251c9203577b23bc7 /src/backend/nodes/copyfuncs.c
parent26069a58e8e4e4f3bef27e52d2d5cad2baa46c9f (diff)
downloadpostgresql-353d36f97974dd5564d8cac6a1e01d78c623a408.tar.gz
postgresql-353d36f97974dd5564d8cac6a1e01d78c623a408.zip
Remove no-longer-used fields in Hash and HashJoin nodes.
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r--src/backend/nodes/copyfuncs.c10
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;
}