diff options
author | konstantin@mysql.com <> | 2004-05-19 16:42:29 +0400 |
---|---|---|
committer | konstantin@mysql.com <> | 2004-05-19 16:42:29 +0400 |
commit | e13e9288c98f5186fd0f534d0d486084e7df2a0a (patch) | |
tree | f1e194f0321c00e3d34498a4ba83ff99fc89f47f /mysql-test/r/variables.result | |
parent | fdc0f0e781051150ac187a92df1ff8f9ae3286c7 (diff) | |
download | mariadb-git-e13e9288c98f5186fd0f534d0d486084e7df2a0a.tar.gz |
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.
Diffstat (limited to 'mysql-test/r/variables.result')
-rw-r--r-- | mysql-test/r/variables.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/variables.result b/mysql-test/r/variables.result index b4a607cb174..f84364089bc 100644 --- a/mysql-test/r/variables.result +++ b/mysql-test/r/variables.result @@ -377,3 +377,7 @@ select 1; 1 select @@session.key_buffer_size; Variable 'key_buffer_size' is a GLOBAL variable +set global myisam_max_sort_file_size=4294967296; +show global variables like 'myisam_max_sort_file_size'; +Variable_name Value +myisam_max_sort_file_size 4294967296 |