diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-05-18 21:34:29 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-05-18 21:34:29 +0000 |
commit | 353d36f97974dd5564d8cac6a1e01d78c623a408 (patch) | |
tree | c561aa760d3dd9e58fb45d4251c9203577b23bc7 /src/backend/nodes/readfuncs.c | |
parent | 26069a58e8e4e4f3bef27e52d2d5cad2baa46c9f (diff) | |
download | postgresql-353d36f97974dd5564d8cac6a1e01d78c623a408.tar.gz postgresql-353d36f97974dd5564d8cac6a1e01d78c623a408.zip |
Remove no-longer-used fields in Hash and HashJoin nodes.
Diffstat (limited to 'src/backend/nodes/readfuncs.c')
-rw-r--r-- | src/backend/nodes/readfuncs.c | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/src/backend/nodes/readfuncs.c b/src/backend/nodes/readfuncs.c index ab491868ac9..82ccdd2dac9 100644 --- a/src/backend/nodes/readfuncs.c +++ b/src/backend/nodes/readfuncs.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.62 1999/05/17 17:03:14 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.63 1999/05/18 21:34:29 tgl Exp $ * * NOTES * Most of the read functions for plan nodes are tested. (In fact, they @@ -454,18 +454,6 @@ _readHashJoin() token = lsptok(NULL, &length); /* get hashjoinop */ local_node->hashjoinop = strtoul(token, NULL, 10); - token = lsptok(NULL, &length); /* eat :hashjointable */ - token = lsptok(NULL, &length); /* eat hashjointable */ - local_node->hashjointable = NULL; - - token = lsptok(NULL, &length); /* eat :hashjointablekey */ - token = lsptok(NULL, &length); /* eat hashjointablekey */ - local_node->hashjointablekey = 0; - - token = lsptok(NULL, &length); /* eat :hashjointablesize */ - token = lsptok(NULL, &length); /* eat hashjointablesize */ - local_node->hashjointablesize = 0; - token = lsptok(NULL, &length); /* eat :hashdone */ token = lsptok(NULL, &length); /* eat hashdone */ local_node->hashdone = false; @@ -680,18 +668,6 @@ _readHash() token = lsptok(NULL, &length); /* eat :hashkey */ local_node->hashkey = (Var *) nodeRead(true); - token = lsptok(NULL, &length); /* eat :hashtable */ - token = lsptok(NULL, &length); /* eat hashtable address */ - local_node->hashtable = NULL; - - token = lsptok(NULL, &length); /* eat :hashtablekey */ - token = lsptok(NULL, &length); /* get hashtablekey */ - local_node->hashtablekey = 0; - - token = lsptok(NULL, &length); /* eat :hashtablesize */ - token = lsptok(NULL, &length); /* get hashtablesize */ - local_node->hashtablesize = 0; - return local_node; } |