Fix contrib/seg's GiST picksplit method.

Fix the same size_alpha versus size_beta typo that was recently fixed
in contrib/cube.  Noted by Alexander Korotkov.

Back-patch to all supported branches (there is a more invasive fix in
HEAD).
This commit is contained in:
Tom Lane 2010-12-15 21:22:38 -05:00
parent 35862ff7f2
commit 7bfefa9a12

View File

@ -432,7 +432,7 @@ gseg_picksplit(GistEntryVector *entryvec,
else
{
datum_r = union_dr;
size_r = size_alpha;
size_r = size_beta;
*right++ = i;
v->spl_nright++;
}