diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-12-15 21:22:38 -0500 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-12-15 21:22:38 -0500 |
| commit | d45f163251e290c66c144c347482538bdde9d895 (patch) | |
| tree | d38563c7a450e209a08c1245e6a1337befe23f19 | |
| parent | 178ca03f1cc81fd9ceb6c62b8d90397023d0d8a2 (diff) | |
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).
| -rw-r--r-- | contrib/seg/seg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/seg/seg.c b/contrib/seg/seg.c index 930a35b0093..0a6cd025293 100644 --- a/contrib/seg/seg.c +++ b/contrib/seg/seg.c @@ -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++; } |
