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
dc77be04
Commit
dc77be04
authored
Feb 28, 1999
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix executor to work correctly with mergejoins where left and
right sides have different data types.
parent
98f73945
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
80 additions
and
123 deletions
+80
-123
src/backend/executor/nodeMergejoin.c
src/backend/executor/nodeMergejoin.c
+75
-118
src/include/nodes/execnodes.h
src/include/nodes/execnodes.h
+5
-5
No files found.
src/backend/executor/nodeMergejoin.c
View file @
dc77be04
This diff is collapsed.
Click to expand it.
src/include/nodes/execnodes.h
View file @
dc77be04
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: execnodes.h,v 1.2
5 1999/02/23 07:55:23 thomas
Exp $
* $Id: execnodes.h,v 1.2
6 1999/02/28 00:36:04 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -463,8 +463,8 @@ typedef struct NestLoopState
/* ----------------
* MergeJoinState information
*
* O
SortopI outerKey1 sortOp
innerKey1 ...
* I
SortopO innerkey1 sortOp outerk
ey1 ...
* O
uterSkipQual outerKey1 <
innerKey1 ...
* I
nnerSkipQual outerKey1 > innerK
ey1 ...
* JoinState current "state" of join. see executor.h
* MarkedTupleSlot pointer to slot in tuple table for marked tuple
*
...
...
@@ -483,8 +483,8 @@ typedef struct NestLoopState
typedef
struct
MergeJoinState
{
JoinState
jstate
;
/* its first field is NodeTag */
List
*
mj_O
SortopI
;
List
*
mj_I
SortopO
;
List
*
mj_O
uterSkipQual
;
List
*
mj_I
nnerSkipQual
;
int
mj_JoinState
;
TupleTableSlot
*
mj_MarkedTupleSlot
;
}
MergeJoinState
;
...
...
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