diff options
| author | Robert Haas <rhaas@postgresql.org> | 2010-11-14 21:27:34 -0500 |
|---|---|---|
| committer | Robert Haas <rhaas@postgresql.org> | 2010-11-14 21:28:10 -0500 |
| commit | e6b3802518ef46d12c45a9a43594bdb0ae650afc (patch) | |
| tree | 775dcad94bfb8667a328e5d62aff21f94f44fbd7 | |
| parent | c350b01e2f72249ce6bcb642e0ee6730838b0cfe (diff) | |
Fix bug in cube picksplit algorithm.
Alexander Korotkov
| -rw-r--r-- | contrib/cube/cube.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cube/cube.c b/contrib/cube/cube.c index 62cd3a2d02a..b8f06238309 100644 --- a/contrib/cube/cube.c +++ b/contrib/cube/cube.c @@ -615,7 +615,7 @@ g_cube_picksplit(PG_FUNCTION_ARGS) else { datum_r = union_dr; - size_r = size_alpha; + size_r = size_beta; *right++ = i; v->spl_nright++; } |
