mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fix for Bug#3754 "SET GLOBAL myisam_max_sort_file_size doesn't
work as expected": precision-losing conversion removed from sys_var_thd_ulonglong. mysql-test/r/variables.result: Test case for Bug#3754 mysql-test/t/variables.test: Test case for Bug#3754 sql/set_var.cc: Fix for Bug#3754: precision-losing conversion removed from sys_var_thd_ulonglong.
This commit is contained in:
@ -268,4 +268,10 @@ select @@xxxxxxxxxx;
|
||||
select 1;
|
||||
|
||||
--error 1238
|
||||
select @@session.key_buffer_size;
|
||||
select @@session.key_buffer_size;
|
||||
|
||||
# Bug#3754 SET GLOBAL myisam_max_sort_file_size doesn't work as
|
||||
# expected: check that there is no overflow when 64-bit unsigned
|
||||
# variables are set
|
||||
set global myisam_max_sort_file_size=4294967296;
|
||||
show global variables like 'myisam_max_sort_file_size';
|
||||
|
Reference in New Issue
Block a user