Commit 2ebf3aec authored by unknown's avatar unknown

porting 29070 to 5.1-opt

parent 72233031
...@@ -78,7 +78,7 @@ uint sp_make_key(register MI_INFO *info, uint keynr, uchar *key, ...@@ -78,7 +78,7 @@ uint sp_make_key(register MI_INFO *info, uint keynr, uchar *key,
if (keyseg->flag & HA_SWAP_KEY) if (keyseg->flag & HA_SWAP_KEY)
{ {
char buf[sizeof(double)]; uchar buf[sizeof(double)];
float8store(buf, val); float8store(buf, val);
pos= &buf[length]; pos= &buf[length];
...@@ -87,7 +87,7 @@ uint sp_make_key(register MI_INFO *info, uint keynr, uchar *key, ...@@ -87,7 +87,7 @@ uint sp_make_key(register MI_INFO *info, uint keynr, uchar *key,
} }
else else
{ {
float8store((byte *)key, val); float8store((uchar *)key, val);
key += length; key += length;
} }
len+= length; len+= length;
...@@ -128,7 +128,7 @@ static int sp_add_point_to_mbr(uchar *(*wkb), uchar *end, uint n_dims, ...@@ -128,7 +128,7 @@ static int sp_add_point_to_mbr(uchar *(*wkb), uchar *end, uint n_dims,
{ {
if ((*wkb) > end - 8) if ((*wkb) > end - 8)
return -1; return -1;
float8get(ord, (const byte*) *wkb); float8get(ord, (const uchar*) *wkb);
(*wkb)+= 8; (*wkb)+= 8;
if (ord < *mbr) if (ord < *mbr)
*mbr= ord; *mbr= ord;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment