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
fabef304
Commit
fabef304
authored
May 14, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor refactoring to eliminate duplicate code and make startup a
tad faster.
parent
05b4293b
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
161 additions
and
214 deletions
+161
-214
src/backend/executor/nodeMergejoin.c
src/backend/executor/nodeMergejoin.c
+156
-213
src/include/nodes/execnodes.h
src/include/nodes/execnodes.h
+5
-1
No files found.
src/backend/executor/nodeMergejoin.c
View file @
fabef304
This diff is collapsed.
Click to expand it.
src/include/nodes/execnodes.h
View file @
fabef304
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.13
2 2005/05/13 21:20:16
tgl Exp $
* $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.13
3 2005/05/14 21:29:23
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1031,6 +1031,8 @@ typedef struct NestLoopState
* NumClauses number of mergejoinable join clauses
* Clauses info for each mergejoinable clause
* JoinState current "state" of join. see execdefs.h
* FillOuter true if should emit unjoined outer tuples anyway
* FillInner true if should emit unjoined inner tuples anyway
* MatchedOuter true if found a join match for current outer tuple
* MatchedInner true if found a join match for current inner tuple
* OuterTupleSlot slot in tuple table for cur outer tuple
...
...
@@ -1051,6 +1053,8 @@ typedef struct MergeJoinState
int
mj_NumClauses
;
MergeJoinClause
mj_Clauses
;
/* array of length mj_NumClauses */
int
mj_JoinState
;
bool
mj_FillOuter
;
bool
mj_FillInner
;
bool
mj_MatchedOuter
;
bool
mj_MatchedInner
;
TupleTableSlot
*
mj_OuterTupleSlot
;
...
...
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