You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I needed some changes to treat DECIMAL by innodb-recovery-0.3.tar.gz
In the output of create_defs.pl,
I think the (NEW)DECIMAL field has not enough information.
1. type: FT_CHAR should be FT_DECIMAL
2. decimal_precision: and decimal_digits:
In addition, the space padded output may be verbose in some cases.
So, I have changed print_data.c as,
bin2decimal((char*)value, &dec, field->decimal_precision,
field->decimal_digits);
// decimal2string(&dec, string_buf, &len, field->decimal_precision,
field->decimal_digits, ' ');
decimal2string(&dec, string_buf, &len, 0,0,0);
print_string(string_buf, len, field);
Best regards,
Yasufumi
Original issue reported on code.google.com by [email protected] on 16 Dec 2008 at 4:58
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 16 Dec 2008 at 4:58The text was updated successfully, but these errors were encountered: