1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

bug fixes

myisam/rt_key.c:
  bug fix
myisam/rt_split.c:
  bug fix
This commit is contained in:
unknown
2003-02-17 19:29:09 +04:00
parent 2b14161212
commit e1d91737bd
2 changed files with 2 additions and 2 deletions

View File

@ -263,7 +263,7 @@ int rtree_split_page(MI_INFO *info, MI_KEYDEF *keyinfo, uchar *page, uchar *key,
int max_keys = (mi_getint(page)-2) / (full_length);
n_dim = (keyinfo->keysegs-1) / 2;
n_dim = keyinfo->keysegs / 2;
{
int coord_buf_size = n_dim * 2 * sizeof(double) * (max_keys + 1 + 4);