Re: [HACKERS] utility commands benefiting from parallel plan

2017-10-11 Thread Haribabu Kommi
On Fri, Oct 6, 2017 at 2:43 AM, Robert Haas wrote: > On Fri, Sep 15, 2017 at 2:22 AM, Haribabu Kommi > wrote: > > Thanks for the review. > > I committed this patch with some cosmetic changes. I think the fact > that several people have asked for this indicates that, even without > making some o

Re: [HACKERS] utility commands benefiting from parallel plan

2017-10-05 Thread Robert Haas
On Fri, Sep 15, 2017 at 2:22 AM, Haribabu Kommi wrote: > Thanks for the review. I committed this patch with some cosmetic changes. I think the fact that several people have asked for this indicates that, even without making some of the more complicated cases work, this has some value. I am not c

Re: [HACKERS] utility commands benefiting from parallel plan

2017-09-14 Thread Haribabu Kommi
On Thu, Sep 14, 2017 at 2:42 PM, Rafia Sabih wrote: > On Wed, Sep 13, 2017 at 2:29 PM, Haribabu Kommi > wrote: > > > > > > On Wed, Sep 13, 2017 at 4:17 PM, Rafia Sabih < > rafia.sa...@enterprisedb.com> > > wrote: > >> > >> On Fri, Sep 1, 2017 at 12:31 PM, Haribabu Kommi > >> wrote: > >> > > >>

Re: [HACKERS] utility commands benefiting from parallel plan

2017-09-13 Thread Rafia Sabih
On Wed, Sep 13, 2017 at 2:29 PM, Haribabu Kommi wrote: > > > On Wed, Sep 13, 2017 at 4:17 PM, Rafia Sabih > wrote: >> >> On Fri, Sep 1, 2017 at 12:31 PM, Haribabu Kommi >> wrote: >> > >> > Hi All, >> > >> > Attached a rebased patch that supports parallelism for the queries >> > that are undernea

Re: [HACKERS] utility commands benefiting from parallel plan

2017-09-13 Thread Haribabu Kommi
On Wed, Sep 13, 2017 at 4:17 PM, Rafia Sabih wrote: > On Fri, Sep 1, 2017 at 12:31 PM, Haribabu Kommi > wrote: > > > > Hi All, > > > > Attached a rebased patch that supports parallelism for the queries > > that are underneath of some utility commands such as CREATE TABLE AS > > and CREATE MATERI

Re: [HACKERS] utility commands benefiting from parallel plan

2017-09-12 Thread Rafia Sabih
On Fri, Sep 1, 2017 at 12:31 PM, Haribabu Kommi wrote: > > Hi All, > > Attached a rebased patch that supports parallelism for the queries > that are underneath of some utility commands such as CREATE TABLE AS > and CREATE MATERIALIZED VIEW. > > Note: This patch doesn't make the utility statement (

Re: [HACKERS] utility commands benefiting from parallel plan

2017-09-01 Thread Haribabu Kommi
Hi All, Attached a rebased patch that supports parallelism for the queries that are underneath of some utility commands such as CREATE TABLE AS and CREATE MATERIALIZED VIEW. Note: This patch doesn't make the utility statement (insert operation) to run in parallel. It only allows the select query

Re: [HACKERS] utility commands benefiting from parallel plan

2017-03-15 Thread Haribabu Kommi
On Tue, Feb 28, 2017 at 12:48 PM, Haribabu Kommi wrote: > > > On Sat, Feb 25, 2017 at 3:21 AM, Robert Haas > wrote: > >> On Fri, Feb 24, 2017 at 11:43 AM, Haribabu Kommi >> wrote: >> > Here I attached an implementation patch that allows >> > utility statements that have queries underneath such

Re: [HACKERS] utility commands benefiting from parallel plan

2017-02-27 Thread Haribabu Kommi
On Sat, Feb 25, 2017 at 3:21 AM, Robert Haas wrote: > On Fri, Feb 24, 2017 at 11:43 AM, Haribabu Kommi > wrote: > > Here I attached an implementation patch that allows > > utility statements that have queries underneath such as > > CREATE TABLE AS, CREATE MATERIALIZED VIEW > > and REFRESH comman

Re: [HACKERS] utility commands benefiting from parallel plan

2017-02-27 Thread Haribabu Kommi
On Sat, Feb 25, 2017 at 2:45 AM, Dilip Kumar wrote: > On Fri, Feb 24, 2017 at 11:43 AM, Haribabu Kommi > wrote: > > Here I attached an implementation patch that allows > > utility statements that have queries underneath such as > > CREATE TABLE AS, CREATE MATERIALIZED VIEW > > and REFRESH comman

Re: [HACKERS] utility commands benefiting from parallel plan

2017-02-24 Thread Robert Haas
On Fri, Feb 24, 2017 at 11:43 AM, Haribabu Kommi wrote: > Here I attached an implementation patch that allows > utility statements that have queries underneath such as > CREATE TABLE AS, CREATE MATERIALIZED VIEW > and REFRESH commands to benefit from parallel plan. > > These write operations not p

Re: [HACKERS] utility commands benefiting from parallel plan

2017-02-24 Thread Dilip Kumar
On Fri, Feb 24, 2017 at 11:43 AM, Haribabu Kommi wrote: > Here I attached an implementation patch that allows > utility statements that have queries underneath such as > CREATE TABLE AS, CREATE MATERIALIZED VIEW > and REFRESH commands to benefit from parallel plan. > > These write operations not p