aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/plannodes.h
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/include/nodes/plannodes.h
parent26069a58e8e4e4f3bef27e52d2d5cad2baa46c9f (diff)
downloadpostgresql-353d36f97974dd5564d8cac6a1e01d78c623a408.tar.gz
postgresql-353d36f97974dd5564d8cac6a1e01d78c623a408.zip
Remove no-longer-used fields in Hash and HashJoin nodes.
Diffstat (limited to 'src/include/nodes/plannodes.h')
-rw-r--r--src/include/nodes/plannodes.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h
index 25c38f228cc..0805665b065 100644
--- a/src/include/nodes/plannodes.h
+++ b/src/include/nodes/plannodes.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: plannodes.h,v 1.24 1999/03/23 16:51:04 momjian Exp $
+ * $Id: plannodes.h,v 1.25 1999/05/18 21:34:26 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -221,9 +221,6 @@ typedef struct HashJoin
List *hashclauses;
Oid hashjoinop;
HashJoinState *hashjoinstate;
- HashJoinTable hashjointable;
- IpcMemoryKey hashjointablekey;
- int hashjointablesize;
bool hashdone;
} HashJoin;
@@ -320,9 +317,6 @@ typedef struct Hash
Plan plan;
Var *hashkey;
HashState *hashstate;
- HashJoinTable hashtable;
- IpcMemoryKey hashtablekey;
- int hashtablesize;
} Hash;
#ifdef NOT_USED