From: | Peter Geoghegan <pg(at)heroku(dot)com> |
---|---|
To: | Robert Haas <robertmhaas(at)gmail(dot)com> |
Cc: | Heikki Linnakangas <hlinnakangas(at)vmware(dot)com>, Noah Misch <noah(at)leadboat(dot)com>, Marti Raudsepp <marti(at)juffo(dot)org>, Stephen Frost <sfrost(at)snowman(dot)net>, Greg Stark <stark(at)mit(dot)edu>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Thom Brown <thom(at)linux(dot)com>, Pg Hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: B-Tree support function number 3 (strxfrm() optimization) |
Date: | 2014-08-22 18:46:42 |
Message-ID: | CAM3SWZT0s629VUwkN_XJ4zS6L8-9zxZo322QEDQ3=JtY1YNWig@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Fri, Aug 22, 2014 at 7:19 AM, Robert Haas <robertmhaas(at)gmail(dot)com> wrote:
> Patch 0002 no longer applies; please rebase.
I attach rebased patch.
Note that there is currently a bug in the master branch:
+ if (len2 >= tss->buflen2)
+ {
+ pfree(tss->buf2);
+ tss->buflen1 = Max(len2 + 1, Min(tss->buflen2 * 2, MaxAllocSize));
+ tss->buf2 = MemoryContextAlloc(ssup->ssup_cxt, tss->buflen2);
+ }
Thanks
--
Peter Geoghegan
Attachment | Content-Type | Size |
---|---|---|
sortsupport-text.2014_08_22.patch | text/x-patch | 55.5 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Haas | 2014-08-22 18:52:50 | Re: WIP Patch for GROUPING SETS phase 1 |
Previous Message | Greg Stark | 2014-08-22 18:42:50 | Re: WIP Patch for GROUPING SETS phase 1 |