diff options
author | monty@hundin.mysql.fi <> | 2002-08-08 20:49:06 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-08-08 20:49:06 +0300 |
commit | 8832927d5c843084664e4ec861f5ebb82d424ed8 (patch) | |
tree | 3a864bb27bc717c690f6d83d2aa5afbc850401a4 /mysql-test/t/variables.test | |
parent | 77296b3f67f50eb5dd2ed804841d28c6b4e3f103 (diff) | |
download | mariadb-git-8832927d5c843084664e4ec861f5ebb82d424ed8.tar.gz |
Added nety_retry_count as a changeable variable
Make safe_mysqld a symlink to mysqld_safe in binary distribution
Fixed problem with CTRL-C when using mysqld --bootstrap
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index 967c21f7eab..ecc4a0cbcdc 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -73,6 +73,7 @@ show global variables like 'myisam_max_sort_file_size'; set myisam_max_sort_file_size=default; show variables like 'myisam_max_sort_file_size'; +set global net_retry_count=10, session net_retry_count=10; set global net_buffer_length=1024, net_write_timeout=200, net_read_timeout=300; set session net_buffer_length=2048, net_write_timeout=500, net_read_timeout=600; show global variables like 'net_%'; |