Lists: | pgsql-committers |
---|
From: | Robert Haas <rhaas(at)postgresql(dot)org> |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: New C function: bms_add_range |
Date: | 2017-11-29 22:12:32 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-committers |
New C function: bms_add_range
This will be used by pending patches to improve partition pruning.
Amit Langote and Kyotaro Horiguchi, per a suggestion from David
Rowley. Review and testing of the larger patch set of which this is a
part by Ashutosh Bapat, David Rowley, Dilip Kumar, Jesper Pedersen,
Rajkumar Raghuwanshi, Beena Emerson, Amul Sul, and Kyotaro Horiguchi.
Discussion: http://postgr.es/m/[email protected]
Branch
------
master
Modified Files
--------------
src/backend/nodes/bitmapset.c | 72 +++++++++++++++++++++++++++++++++++++++++++
src/include/nodes/bitmapset.h | 1 +
2 files changed, 73 insertions(+)
From: | Amit Langote <Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp> |
---|---|
To: | Robert Haas <rhaas(at)postgresql(dot)org>, pgsql-committers(at)postgresql(dot)org |
Subject: | Re: pgsql: New C function: bms_add_range |
Date: | 2017-11-30 01:27:56 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-committers |
On 2017/11/30 7:12, Robert Haas wrote:
> New C function: bms_add_range
>
> This will be used by pending patches to improve partition pruning.
>
> Amit Langote and Kyotaro Horiguchi, per a suggestion from David
> Rowley. Review and testing of the larger patch set of which this is a
> part by Ashutosh Bapat, David Rowley, Dilip Kumar, Jesper Pedersen,
> Rajkumar Raghuwanshi, Beena Emerson, Amul Sul, and Kyotaro Horiguchi.
>
> Discussion: http://postgr.es/m/[email protected]
Thanks for committing this.
To be accurate, as also noted in the commit message of the patch that I
sent, authors of this patch are David Rowley and Kyotaro Horiguchi. David
came up with the idea and the patch first [1], which Horiguchi-san later
commented on to improve the code. My job has simply been to incorporate
their patch in the bigger patch set.
Thanks,
Amit
From: | Robert Haas <robertmhaas(at)gmail(dot)com> |
---|---|
To: | Amit Langote <Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp> |
Cc: | pgsql-committers <pgsql-committers(at)postgresql(dot)org> |
Subject: | Re: pgsql: New C function: bms_add_range |
Date: | 2017-11-30 01:48:46 |
Message-ID: | CA+TgmoYVJLfHb+2nfb5_fmSsTBO8wKoz22o_6=ugWodS_a_xJw@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-committers |
On Wed, Nov 29, 2017 at 8:27 PM, Amit Langote
<Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp> wrote:
> To be accurate, as also noted in the commit message of the patch that I
> sent, authors of this patch are David Rowley and Kyotaro Horiguchi. David
> came up with the idea and the patch first [1], which Horiguchi-san later
> commented on to improve the code. My job has simply been to incorporate
> their patch in the bigger patch set.
Crap, I apologize. I looked at the commit message you wrote in
putting together mine, but I somehow blanked out the fact that you had
listed David rather than yourself as first author. That was bad of
me, and I am sorry.
--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
From: | David Rowley <david(dot)rowley(at)2ndquadrant(dot)com> |
---|---|
To: | Robert Haas <robertmhaas(at)gmail(dot)com> |
Cc: | Amit Langote <Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp>, pgsql-committers <pgsql-committers(at)postgresql(dot)org> |
Subject: | Re: pgsql: New C function: bms_add_range |
Date: | 2017-11-30 20:53:54 |
Message-ID: | CAKJS1f_0iSiLQsf_c06AzOWAc3eS6ePjjVQFpcFv3W-O5aktnQ@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-committers |
On 30 November 2017 at 14:48, Robert Haas <robertmhaas(at)gmail(dot)com> wrote:
> On Wed, Nov 29, 2017 at 8:27 PM, Amit Langote
> <Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp> wrote:
>> To be accurate, as also noted in the commit message of the patch that I
>> sent, authors of this patch are David Rowley and Kyotaro Horiguchi. David
>> came up with the idea and the patch first [1], which Horiguchi-san later
>> commented on to improve the code. My job has simply been to incorporate
>> their patch in the bigger patch set.
>
> Crap, I apologize. I looked at the commit message you wrote in
> putting together mine, but I somehow blanked out the fact that you had
> listed David rather than yourself as first author. That was bad of
> me, and I am sorry.
Unfortunate, but you're forgiven :-p
I've attached a small patch to fix the comment at the head of the
function. I thought I had fixed this, but seems I didn't.
--
David Rowley http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services
Attachment | Content-Type | Size |
---|---|---|
bms_add_range_comment_fix.patch | application/octet-stream | 724 bytes |
From: | Robert Haas <robertmhaas(at)gmail(dot)com> |
---|---|
To: | David Rowley <david(dot)rowley(at)2ndquadrant(dot)com> |
Cc: | Amit Langote <Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp>, pgsql-committers <pgsql-committers(at)postgresql(dot)org> |
Subject: | Re: pgsql: New C function: bms_add_range |
Date: | 2017-11-30 21:27:21 |
Message-ID: | CA+TgmoZtzk51nPofHewBrzTUo3pkveR9vcTT5=+B93b0J65new@mail.gmail.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Lists: | pgsql-committers |
On Thu, Nov 30, 2017 at 3:53 PM, David Rowley
<david(dot)rowley(at)2ndquadrant(dot)com> wrote:
> Unfortunate, but you're forgiven :-p
>
> I've attached a small patch to fix the comment at the head of the
> function. I thought I had fixed this, but seems I didn't.
Thanks, committed.
--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company