Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
353d36f9
Commit
353d36f9
authored
May 18, 1999
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove no-longer-used fields in Hash and HashJoin nodes.
parent
26069a58
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
87 deletions
+21
-87
src/backend/nodes/copyfuncs.c
src/backend/nodes/copyfuncs.c
+1
-9
src/backend/nodes/outfuncs.c
src/backend/nodes/outfuncs.c
+4
-12
src/backend/nodes/readfuncs.c
src/backend/nodes/readfuncs.c
+1
-25
src/backend/optimizer/plan/createplan.c
src/backend/optimizer/plan/createplan.c
+1
-7
src/include/nodes/execnodes.h
src/include/nodes/execnodes.h
+13
-27
src/include/nodes/plannodes.h
src/include/nodes/plannodes.h
+1
-7
No files found.
src/backend/nodes/copyfuncs.c
View file @
353d36f9
...
...
@@ -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
;
}
...
...
src/backend/nodes/outfuncs.c
View file @
353d36f9
...
...
@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: outfuncs.c,v 1.8
2 1999/05/17 17:03:13 momjian
Exp $
* $Id: outfuncs.c,v 1.8
3 1999/05/18 21:34:28 tgl
Exp $
*
* NOTES
* Every (plan) node in POSTGRES has an associated "out" routine which
...
...
@@ -385,14 +385,11 @@ _outHashJoin(StringInfo str, HashJoin *node)
_outNode
(
str
,
node
->
hashclauses
);
appendStringInfo
(
str
,
" :hashjoinop %u :hashjointable 0x%x :hashjointablekey %d "
,
node
->
hashjoinop
,
(
int
)
node
->
hashjointable
,
node
->
hashjointablekey
);
" :hashjoinop %u "
,
node
->
hashjoinop
);
appendStringInfo
(
str
,
" :hashjointablesize %d :hashdone %d "
,
node
->
hashjointablesize
,
" :hashdone %d "
,
node
->
hashdone
);
}
...
...
@@ -536,11 +533,6 @@ _outHash(StringInfo str, Hash *node)
appendStringInfo
(
str
,
" :hashkey "
);
_outNode
(
str
,
node
->
hashkey
);
appendStringInfo
(
str
,
" :hashtable 0x%x :hashtablekey %d :hashtablesize %d "
,
(
int
)
node
->
hashtable
,
node
->
hashtablekey
,
node
->
hashtablesize
);
}
/*****************************************************************************
...
...
src/backend/nodes/readfuncs.c
View file @
353d36f9
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.6
2 1999/05/17 17:03:14 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.6
3 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
;
}
...
...
src/backend/optimizer/plan/createplan.c
View file @
353d36f9
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/createplan.c,v 1.5
4 1999/05/10 00:45:19 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/createplan.c,v 1.5
5 1999/05/18 21:34:29 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1050,9 +1050,6 @@ make_hashjoin(List *tlist,
plan
->
lefttree
=
lefttree
;
plan
->
righttree
=
righttree
;
node
->
hashclauses
=
hashclauses
;
node
->
hashjointable
=
NULL
;
node
->
hashjointablekey
=
0
;
node
->
hashjointablesize
=
0
;
node
->
hashdone
=
false
;
return
node
;
...
...
@@ -1071,9 +1068,6 @@ make_hash(List *tlist, Var *hashkey, Plan *lefttree)
plan
->
lefttree
=
lefttree
;
plan
->
righttree
=
NULL
;
node
->
hashkey
=
hashkey
;
node
->
hashtable
=
NULL
;
node
->
hashtablekey
=
0
;
node
->
hashtablesize
=
0
;
return
node
;
}
...
...
src/include/nodes/execnodes.h
View file @
353d36f9
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: execnodes.h,v 1.2
7 1999/03/23 16:51:00 momjian
Exp $
* $Id: execnodes.h,v 1.2
8 1999/05/18 21:34:26 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -492,24 +492,16 @@ typedef struct MergeJoinState
/* ----------------
* HashJoinState information
*
* hj_HashTable address of the hash table for the hashjoin
* hj_HashTableShmId shared memory id of hash table
* hj_CurBucket the current hash bucket that we are searching
* for matches of the current outer tuple
* hj_CurTuple the current matching inner tuple in the
* current hash bucket
* hj_CurOTuple the current matching inner tuple in the
* current hash overflow chain
* hj_HashTable hash table for the hashjoin
* hj_CurBucketNo bucket# for current outer tuple
* hj_CurTuple last inner tuple matched to current outer
* tuple, or NULL if starting search
* (CurBucketNo and CurTuple are meaningless
* unless OuterTupleSlot is nonempty!)
* hj_InnerHashKey the inner hash key in the hashjoin condition
* hj_OuterBatches file descriptors for outer batches
* hj_InnerBatches file descriptors for inner batches
* hj_OuterReadPos current read position of outer batch
* hj_OuterReadBlk current read block of outer batch
* hj_OuterTupleSlot tuple slot for outer tuples
* hj_HashTupleSlot tuple slot for hashed tuples
*
*
*
* JoinState information
*
* CommonState information
...
...
@@ -525,16 +517,10 @@ typedef struct MergeJoinState
typedef
struct
HashJoinState
{
JoinState
jstate
;
/* its first field is NodeTag */
HashJoinTable
hj_HashTable
;
IpcMemoryId
hj_HashTableShmId
;
HashBucket
hj_CurBucket
;
HeapTuple
hj_CurTuple
;
OverflowTuple
hj_CurOTuple
;
Var
*
hj_InnerHashKey
;
File
*
hj_OuterBatches
;
File
*
hj_InnerBatches
;
char
*
hj_OuterReadPos
;
int
hj_OuterReadBlk
;
HashJoinTable
hj_HashTable
;
int
hj_CurBucketNo
;
HashJoinTuple
hj_CurTuple
;
Var
*
hj_InnerHashKey
;
TupleTableSlot
*
hj_OuterTupleSlot
;
TupleTableSlot
*
hj_HashTupleSlot
;
}
HashJoinState
;
...
...
@@ -668,7 +654,7 @@ typedef CommonState UniqueState;
/* ----------------
* HashState information
*
* hash
Batches file descriptors for the batches
* hash
table hash table for the hashjoin
*
* CommonState information
*
...
...
@@ -683,7 +669,7 @@ typedef CommonState UniqueState;
typedef
struct
HashState
{
CommonState
cstate
;
/* its first field is NodeTag */
File
*
hashBatches
;
HashJoinTable
hashtable
;
}
HashState
;
#ifdef NOT_USED
...
...
src/include/nodes/plannodes.h
View file @
353d36f9
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: plannodes.h,v 1.2
4 1999/03/23 16:51:04 momjian
Exp $
* $Id: plannodes.h,v 1.2
5 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment