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

Bug#11589 mysqltest, --ps-protocol, strange output, float/double/real with zerofill

- Add zerofill in client if real/float/double is bound to string and fetched using binary protocol.
This commit is contained in:
msvensson@neptunus.(none)
2006-02-21 14:55:54 +01:00
parent 41c6fee874
commit 519bf5b6fc
3 changed files with 43 additions and 1 deletions

View File

@ -3850,7 +3850,15 @@ static void fetch_float_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
sprintf(buff, "%.*f", (int) field->decimals, value);
end= strend(buff);
}
fetch_string_with_conversion(param, buff, (uint) (end - buff));
uint length= (uint) (end-buff);
if (field->flags & ZEROFILL_FLAG && length < field->length &&
field->length < MAX_DOUBLE_STRING_REP_LENGTH-1)
{
bmove_upp((char*) buff+field->length,buff+length, length);
bfill((char*) buff, field->length - length,'0');
length= field->length;
}
fetch_string_with_conversion(param, buff, length);
break;
}
}