Commit 84db76a3 authored by unknown's avatar unknown

Bug#32966 main.status fails

FLUSH STATUS doesn't clear the values of the global status variables.
The test case is reduced to testing session local Com-variables until
FLUSH GLOBAL STATUS is implemented.


mysql-test/r/status.result:
  Reduce test to testing session status until 'FLUSH GLOBAL STATUS' is
  implemented.
mysql-test/t/disabled.def:
  Enable main.status.test.
mysql-test/t/status.test:
  Reduce test to testing session status until 'FLUSH GLOBAL STATUS' is
  implemented.
parent 9e8df5f2
...@@ -162,7 +162,8 @@ Variable_name Value ...@@ -162,7 +162,8 @@ Variable_name Value
Com_show_status 8 Com_show_status 8
rnd_diff tmp_table_diff rnd_diff tmp_table_diff
20 8 20 8
show global status like 'Com%function%'; flush status;
show status like 'Com%function%';
Variable_name Value Variable_name Value
Com_alter_function 0 Com_alter_function 0
Com_create_function 0 Com_create_function 0
...@@ -176,7 +177,7 @@ set ret = x * 10; ...@@ -176,7 +177,7 @@ set ret = x * 10;
return ret; return ret;
end // end //
drop function f1; drop function f1;
show global status like 'Com%function%'; show status like 'Com%function%';
Variable_name Value Variable_name Value
Com_alter_function 0 Com_alter_function 0
Com_create_function 1 Com_create_function 1
......
...@@ -10,7 +10,6 @@ ...@@ -10,7 +10,6 @@
# #
############################################################################## ##############################################################################
federated_transactions : Bug#29523 Transactions do not work federated_transactions : Bug#29523 Transactions do not work
status : Bug#32966 main.status fails
ps_ddl : Bug#12093 2007-12-14 pending WL#4165 / WL#4166 ps_ddl : Bug#12093 2007-12-14 pending WL#4165 / WL#4166
csv_alter_table : Bug#33696 2008-01-21 pcrews no .result file - bug allows NULL columns in CSV tables csv_alter_table : Bug#33696 2008-01-21 pcrews no .result file - bug allows NULL columns in CSV tables
user_limits : Bug#23921 random failure of user_limits.test user_limits : Bug#23921 random failure of user_limits.test
......
...@@ -245,7 +245,8 @@ eval select substring_index('$rnd_next2',0x9,-1)-substring_index('$rnd_next',0x9 ...@@ -245,7 +245,8 @@ eval select substring_index('$rnd_next2',0x9,-1)-substring_index('$rnd_next',0x9
# #
# Bug#30252 Com_create_function is not incremented. # Bug#30252 Com_create_function is not incremented.
# #
show global status like 'Com%function%'; flush status;
show status like 'Com%function%';
DELIMITER //; DELIMITER //;
create function f1 (x INTEGER) returns integer create function f1 (x INTEGER) returns integer
...@@ -257,8 +258,7 @@ create function f1 (x INTEGER) returns integer ...@@ -257,8 +258,7 @@ create function f1 (x INTEGER) returns integer
DELIMITER ;// DELIMITER ;//
drop function f1; drop function f1;
show status like 'Com%function%';
show global status like 'Com%function%';
# End of 5.1 tests # End of 5.1 tests
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment