diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-01-08 16:47:35 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-01-08 16:47:35 +0000 |
commit | 757dfd6327b6abeb592aef8c689d59faf6b3f82e (patch) | |
tree | 42baf330fc046e6afe5bb7010db51fea2aa48412 /src/backend/executor | |
parent | 9c1443e66fa30357365ab2225ff6543721641eb8 (diff) | |
download | postgresql-757dfd6327b6abeb592aef8c689d59faf6b3f82e.tar.gz postgresql-757dfd6327b6abeb592aef8c689d59faf6b3f82e.zip |
Tweak joinlist creation to avoid generating useless one-element subproblems
when collapsing of JOIN trees is stopped by join_collapse_limit. For instance
a list of 11 LEFT JOINs with limit 8 now produces something like
((1 2 3 4 5 6 7 8) 9 10 11 12)
instead of
(((1 2 3 4 5 6 7 8) (9)) 10 11 12)
The latter structure is really only required for a FULL JOIN.
Noted while studying an example from Shane Ambler.
Diffstat (limited to 'src/backend/executor')
0 files changed, 0 insertions, 0 deletions