mirror of
https://github.com/MariaDB/server.git
synced 2025-04-11 17:55:34 +02:00
32-bit fix
This commit is contained in:
parent
bb865442a4
commit
274e1e4497
1 changed files with 5 additions and 0 deletions
|
@ -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';
|
||||
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue