1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Cleanup after test cases

This commit is contained in:
msvensson@neptunus.(none)
2006-11-15 10:23:27 +01:00
parent a0f00ce965
commit 15c3ed7517
24 changed files with 93 additions and 26 deletions

View File

@ -17,6 +17,8 @@ show variables like 'max_connections';
save_master_pos;
connection slave;
sync_with_master;
# Save variable value
set @my_global_init_connect= @@global.init_connect;
set global init_connect="set @c=1";
show variables like 'init_connect';
connection master;
@ -25,4 +27,8 @@ connection slave;
sync_with_master;
stop slave;
# Restore changed global variable
set global init_connect= @my_global_init_connect;
set global max_connections= default;
# End of 4.1 tests