diff options
author | monty@mysql.com <> | 2004-05-28 00:32:55 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-05-28 00:32:55 +0300 |
commit | a7c17eee46b6568507b3e6ba6038ae5368eb3f44 (patch) | |
tree | 205c4fbbe1ecbaca22c137eadf4aae47a242897a /mysql-test | |
parent | 6cd8de36453cf24867a7d8b84e276fea9bed55ad (diff) | |
download | mariadb-git-a7c17eee46b6568507b3e6ba6038ae5368eb3f44.tar.gz |
Portability fix for 32 bit file systems
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/variables.result | 2 | ||||
-rw-r--r-- | mysql-test/t/variables.test | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/r/variables.result b/mysql-test/r/variables.result index f84364089bc..e36f4165f46 100644 --- a/mysql-test/r/variables.result +++ b/mysql-test/r/variables.result @@ -380,4 +380,4 @@ 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 +myisam_max_sort_file_size MAX_FILE_SIZE diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index e59667d6af4..b9aa52ec627 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -274,4 +274,5 @@ select @@session.key_buffer_size; # expected: check that there is no overflow when 64-bit unsigned # variables are set set global myisam_max_sort_file_size=4294967296; +--replace_result 4294967296 MAX_FILE_SIZE 2146435072 MAX_FILE_SIZE show global variables like 'myisam_max_sort_file_size'; |