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
5bb46e7c
Commit
5bb46e7c
authored
Oct 12, 2002
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug #795: two clauses that seem redundant are not really, if
one is pushed down into an outer join and the other is not.
parent
8031b066
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
6 deletions
+18
-6
src/backend/optimizer/util/relnode.c
src/backend/optimizer/util/relnode.c
+18
-6
No files found.
src/backend/optimizer/util/relnode.c
View file @
5bb46e7c
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/relnode.c,v 1.
39 2002/09/04 20:31:22 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/util/relnode.c,v 1.
40 2002/10/12 22:24:49 tgl
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -28,7 +28,8 @@ static List *new_join_tlist(List *tlist, int first_resdomno);
...
@@ -28,7 +28,8 @@ static List *new_join_tlist(List *tlist, int first_resdomno);
static
List
*
build_joinrel_restrictlist
(
Query
*
root
,
static
List
*
build_joinrel_restrictlist
(
Query
*
root
,
RelOptInfo
*
joinrel
,
RelOptInfo
*
joinrel
,
RelOptInfo
*
outer_rel
,
RelOptInfo
*
outer_rel
,
RelOptInfo
*
inner_rel
);
RelOptInfo
*
inner_rel
,
JoinType
jointype
);
static
void
build_joinrel_joinlist
(
RelOptInfo
*
joinrel
,
static
void
build_joinrel_joinlist
(
RelOptInfo
*
joinrel
,
RelOptInfo
*
outer_rel
,
RelOptInfo
*
outer_rel
,
RelOptInfo
*
inner_rel
);
RelOptInfo
*
inner_rel
);
...
@@ -334,7 +335,8 @@ build_join_rel(Query *root,
...
@@ -334,7 +335,8 @@ build_join_rel(Query *root,
*
restrictlist_ptr
=
build_joinrel_restrictlist
(
root
,
*
restrictlist_ptr
=
build_joinrel_restrictlist
(
root
,
joinrel
,
joinrel
,
outer_rel
,
outer_rel
,
inner_rel
);
inner_rel
,
jointype
);
return
joinrel
;
return
joinrel
;
}
}
...
@@ -419,7 +421,8 @@ build_join_rel(Query *root,
...
@@ -419,7 +421,8 @@ build_join_rel(Query *root,
restrictlist
=
build_joinrel_restrictlist
(
root
,
restrictlist
=
build_joinrel_restrictlist
(
root
,
joinrel
,
joinrel
,
outer_rel
,
outer_rel
,
inner_rel
);
inner_rel
,
jointype
);
if
(
restrictlist_ptr
)
if
(
restrictlist_ptr
)
*
restrictlist_ptr
=
restrictlist
;
*
restrictlist_ptr
=
restrictlist
;
build_joinrel_joinlist
(
joinrel
,
outer_rel
,
inner_rel
);
build_joinrel_joinlist
(
joinrel
,
outer_rel
,
inner_rel
);
...
@@ -508,6 +511,7 @@ new_join_tlist(List *tlist,
...
@@ -508,6 +511,7 @@ new_join_tlist(List *tlist,
* 'joinrel' is a join relation node
* 'joinrel' is a join relation node
* 'outer_rel' and 'inner_rel' are a pair of relations that can be joined
* 'outer_rel' and 'inner_rel' are a pair of relations that can be joined
* to form joinrel.
* to form joinrel.
* 'jointype' is the type of join used.
*
*
* build_joinrel_restrictlist() returns a list of relevant restrictinfos,
* build_joinrel_restrictlist() returns a list of relevant restrictinfos,
* whereas build_joinrel_joinlist() stores its results in the joinrel's
* whereas build_joinrel_joinlist() stores its results in the joinrel's
...
@@ -522,7 +526,8 @@ static List *
...
@@ -522,7 +526,8 @@ static List *
build_joinrel_restrictlist
(
Query
*
root
,
build_joinrel_restrictlist
(
Query
*
root
,
RelOptInfo
*
joinrel
,
RelOptInfo
*
joinrel
,
RelOptInfo
*
outer_rel
,
RelOptInfo
*
outer_rel
,
RelOptInfo
*
inner_rel
)
RelOptInfo
*
inner_rel
,
JoinType
jointype
)
{
{
List
*
result
=
NIL
;
List
*
result
=
NIL
;
List
*
rlist
;
List
*
rlist
;
...
@@ -553,6 +558,11 @@ build_joinrel_restrictlist(Query *root,
...
@@ -553,6 +558,11 @@ build_joinrel_restrictlist(Query *root,
* one clause that checks equality between any set member on the left
* one clause that checks equality between any set member on the left
* and any member on the right; by transitivity, all the rest are then
* and any member on the right; by transitivity, all the rest are then
* equal.
* equal.
*
* Weird special case: if we have two clauses that seem redundant
* except one is pushed down into an outer join and the other isn't,
* then they're not really redundant, because one constrains the
* joined rows after addition of null fill rows, and the other doesn't.
*/
*/
foreach
(
item
,
rlist
)
foreach
(
item
,
rlist
)
{
{
...
@@ -576,7 +586,9 @@ build_joinrel_restrictlist(Query *root,
...
@@ -576,7 +586,9 @@ build_joinrel_restrictlist(Query *root,
if
(
oldrinfo
->
mergejoinoperator
!=
InvalidOid
&&
if
(
oldrinfo
->
mergejoinoperator
!=
InvalidOid
&&
rinfo
->
left_pathkey
==
oldrinfo
->
left_pathkey
&&
rinfo
->
left_pathkey
==
oldrinfo
->
left_pathkey
&&
rinfo
->
right_pathkey
==
oldrinfo
->
right_pathkey
)
rinfo
->
right_pathkey
==
oldrinfo
->
right_pathkey
&&
(
rinfo
->
ispusheddown
==
oldrinfo
->
ispusheddown
||
!
IS_OUTER_JOIN
(
jointype
)))
{
{
redundant
=
true
;
redundant
=
true
;
break
;
break
;
...
...
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