Re: Proposal : Parallel Merge Join
Dilip Kumar <dilipbalaut@gmail.com>
From: Dilip Kumar <dilipbalaut@gmail.com>
To: Robert Haas <robertmhaas@gmail.com>
Cc: pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2016-12-21T15:53:31Z
Lists: pgsql-hackers
Attachments
- parallel_mergejoin_v3.patch (application/octet-stream) patch v3
On Wed, Dec 21, 2016 at 8:39 PM, Robert Haas <robertmhaas@gmail.com> wrote: > Committed the refactoring patch with some mild cosmetic adjustments. Thanks.. > > As to the second patch: > > + if (jointype == JOIN_UNIQUE_INNER) > + jointype = JOIN_INNER; > > Isn't this dead code? save_jointype might that value, but jointype won't. Yes, it is. I have fixed this, and also observed that comment for try_partial_mergejoin_path header was having some problem, fixed that too. > > Apart from that and some cosmetic issues it looks basically OK to me > on a first read-through. -- Regards, Dilip Kumar EnterpriseDB: http://www.enterprisedb.com
Commits
-
Consider parallel merge joins.
- 3bc7dafa9beb 10.0 landed
-
Preparatory refactoring for parallel merge join support.
- a71f10189dc1 10.0 landed
-
Fix parallel hash join path search.
- 655393a022bd 10.0 landed