1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Fixed compiler errors

Updated test to also work on 32 bit

mysql-test/suite/heap/heap.test:
  Updated test to also work on 32 bit
This commit is contained in:
Michael Widenius
2012-08-14 19:59:28 +03:00
parent c0f04fa31c
commit b886cac712
18 changed files with 64 additions and 23 deletions

View File

@ -137,7 +137,10 @@ static bool set_one_value(ha_create_table_option *opt,
my_option optp=
{ opt->name, 1, 0, (uchar **)val, 0, 0, GET_ULL,
REQUIRED_ARG, opt->def_value, opt->min_value, opt->max_value,
REQUIRED_ARG,
(longlong) opt->def_value,
(longlong) opt->min_value,
opt->max_value,
0, (long) opt->block_size, 0};
ulonglong orig_val= strtoull(value->str, NULL, 10);