diff options
author | unknown <gluh@gluh.mysql.r18.ru> | 2005-03-16 15:57:57 +0300 |
---|---|---|
committer | unknown <gluh@gluh.mysql.r18.ru> | 2005-03-16 15:57:57 +0300 |
commit | 9245168429bc963a73cbc16259535e612badd8e3 (patch) | |
tree | 8e0a2d672ac575918ce019822de8a559814a4700 /mysql-test/t/rpl000005.test | |
parent | 49a61208e660e054f4eb716fdc1bf3071a603e57 (diff) | |
download | mariadb-git-9245168429bc963a73cbc16259535e612badd8e3.tar.gz |
Fix for bug #7100: relay_log_space_max missing from SHOW VARIABLES
Diffstat (limited to 'mysql-test/t/rpl000005.test')
-rw-r--r-- | mysql-test/t/rpl000005.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/t/rpl000005.test b/mysql-test/t/rpl000005.test index ae713633df3..b94695c72e1 100644 --- a/mysql-test/t/rpl000005.test +++ b/mysql-test/t/rpl000005.test @@ -1,5 +1,10 @@ source include/master-slave.inc; +# +# Bug#7100 relay_log_space_max missing from SHOW VARIABLES +# +SHOW VARIABLES LIKE 'relay_log_space_limit'; + CREATE TABLE t1 (name varchar(64), age smallint(3)); INSERT INTO t1 SET name='Andy', age=31; INSERT t1 SET name='Jacob', age=2; |