summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2002-08-08 20:49:06 +0300
committermonty@hundin.mysql.fi <>2002-08-08 20:49:06 +0300
commit8832927d5c843084664e4ec861f5ebb82d424ed8 (patch)
tree3a864bb27bc717c690f6d83d2aa5afbc850401a4 /mysql-test
parent77296b3f67f50eb5dd2ed804841d28c6b4e3f103 (diff)
downloadmariadb-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')
-rw-r--r--mysql-test/r/olap.result10
-rw-r--r--mysql-test/r/variables.result1
-rw-r--r--mysql-test/t/variables.test1
3 files changed, 7 insertions, 5 deletions
diff --git a/mysql-test/r/olap.result b/mysql-test/r/olap.result
index fa6008e99f7..52bd83df5ed 100644
--- a/mysql-test/r/olap.result
+++ b/mysql-test/r/olap.result
@@ -15,13 +15,13 @@ insert into sales values ( 'Computer', 'India',2000, 1200),
( 'Computer', 'United States', 2000,1500),
( 'Calculator', 'United States', 2000,75);
select product, country , year, sum(profit) from sales group by product, country, year with cube;
-This version of MySQL doesn't yet support 'CUBE',
+This version of MySQL doesn't yet support 'CUBE'
explain select product, country , year, sum(profit) from sales group by product, country, year with cube;
-This version of MySQL doesn't yet support 'CUBE',
+This version of MySQL doesn't yet support 'CUBE'
select product, country , year, sum(profit) from sales group by product, country, year with rollup;
-This version of MySQL doesn't yet support 'ROLLUP',
+This version of MySQL doesn't yet support 'ROLLUP'
explain select product, country , year, sum(profit) from sales group by product, country, year with rollup;
-This version of MySQL doesn't yet support 'ROLLUP',
+This version of MySQL doesn't yet support 'ROLLUP'
select product, country , year, sum(profit) from sales group by product, country, year with cube union all select product, country , year, sum(profit) from sales group by product, country, year with rollup;
-This version of MySQL doesn't yet support 'CUBE',
+This version of MySQL doesn't yet support 'CUBE'
drop table sales;
diff --git a/mysql-test/r/variables.result b/mysql-test/r/variables.result
index 4227ecfdadb..2896636a37c 100644
--- a/mysql-test/r/variables.result
+++ b/mysql-test/r/variables.result
@@ -120,6 +120,7 @@ set myisam_max_sort_file_size=default;
show variables like 'myisam_max_sort_file_size';
Variable_name Value
myisam_max_sort_file_size 20000
+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_%';
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_%';