1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

porting 29070 to 5.1-opt

This commit is contained in:
unknown
2007-07-11 13:09:39 +03:00
parent ecbd9efeb0
commit 6a1fda7aba

View File

@@ -78,7 +78,7 @@ uint sp_make_key(register MI_INFO *info, uint keynr, uchar *key,
if (keyseg->flag & HA_SWAP_KEY)
{
char buf[sizeof(double)];
uchar buf[sizeof(double)];
float8store(buf, val);
pos= &buf[length];
@@ -87,7 +87,7 @@ uint sp_make_key(register MI_INFO *info, uint keynr, uchar *key,
}
else
{
float8store((byte *)key, val);
float8store((uchar *)key, val);
key += length;
}
len+= length;
@@ -128,7 +128,7 @@ static int sp_add_point_to_mbr(uchar *(*wkb), uchar *end, uint n_dims,
{
if ((*wkb) > end - 8)
return -1;
float8get(ord, (const byte*) *wkb);
float8get(ord, (const uchar*) *wkb);
(*wkb)+= 8;
if (ord < *mbr)
*mbr= ord;