diff options
author | unknown <serg@janus.mylan> | 2007-12-19 21:31:04 +0100 |
---|---|---|
committer | unknown <serg@janus.mylan> | 2007-12-19 21:31:04 +0100 |
commit | 154933ec02af9281e84892a3d41edaaafa868cb7 (patch) | |
tree | 0ed7873673248c5a8de230d38d1130699a225bc6 /mysql-test/r/variables.result | |
parent | 81dda2e7019b4d55ea88ef2ab779ac78c07c8a3a (diff) | |
download | mariadb-git-154933ec02af9281e84892a3d41edaaafa868cb7.tar.gz |
correct invalid values in SET GLOBAL var=DEFAULT
bug#33382
mysql-test/r/variables.result:
typo in a test case
mysql-test/t/variables.test:
typo in a test case
sql/set_var.cc:
correct invalid values in SET GLOBAL var=DEFAULT
Diffstat (limited to 'mysql-test/r/variables.result')
-rw-r--r-- | mysql-test/r/variables.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/variables.result b/mysql-test/r/variables.result index 9c360ef4ab3..376a8ffa38e 100644 --- a/mysql-test/r/variables.result +++ b/mysql-test/r/variables.result @@ -182,7 +182,7 @@ show global variables like 'myisam_max_sort_file_size'; Variable_name Value myisam_max_sort_file_size 1048576 set GLOBAL myisam_max_sort_file_size=default; -show variables like 'myisam_max_sort_file_size'; +show global variables like 'myisam_max_sort_file_size'; Variable_name Value myisam_max_sort_file_size FILE_SIZE set global net_retry_count=10, session net_retry_count=10; |