32-bit fix

This commit is contained in:
Sergei Golubchik 2009-12-22 12:05:51 +01:00
parent bb865442a4
commit 274e1e4497

View file

@ -1,12 +1,17 @@
#
# only global
#
--replace_result 4294967295 18446744073709551615
select @@global.myisam_mmap_size;
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
select @@session.myisam_mmap_size;
--replace_result 4294967295 18446744073709551615
show global variables like 'myisam_mmap_size';
--replace_result 4294967295 18446744073709551615
show session variables like 'myisam_mmap_size';
--replace_result 4294967295 18446744073709551615
select * from information_schema.global_variables where variable_name='myisam_mmap_size';
--replace_result 4294967295 18446744073709551615
select * from information_schema.session_variables where variable_name='myisam_mmap_size';
#