Skip to content

Commit d45f163

Browse files
committed
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).
1 parent 178ca03 commit d45f163

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/seg/seg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ gseg_picksplit(GistEntryVector *entryvec,
432432
else
433433
{
434434
datum_r = union_dr;
435-
size_r = size_alpha;
435+
size_r = size_beta;
436436
*right++ = i;
437437
v->spl_nright++;
438438
}

0 commit comments

Comments
 (0)