Commit 9522ec3e authored by Robert Haas's avatar Robert Haas

Fix typo in b34e37bf.

Spotted by Peter Geoghegan.
parent a9d0f1cf
......@@ -1851,7 +1851,7 @@ bttextfastcmp_locale(Datum x, Datum y, SortSupport ssup)
if (len2 >= tss->buflen2)
{
pfree(tss->buf2);
tss->buflen1 = Max(len2 + 1, Min(tss->buflen2 * 2, MaxAllocSize));
tss->buflen2 = Max(len2 + 1, Min(tss->buflen2 * 2, MaxAllocSize));
tss->buf2 = MemoryContextAlloc(ssup->ssup_cxt, tss->buflen2);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment