diff options
author | unknown <Kristofer.Pettersson@naruto.> | 2006-12-01 09:49:19 +0100 |
---|---|---|
committer | unknown <Kristofer.Pettersson@naruto.> | 2006-12-01 09:49:19 +0100 |
commit | e284256ef0f24ea4cb826df1ad321adc3604cf0d (patch) | |
tree | cf32823947bbb9254c2685b380726922c6bb676e /mysql-test/t/flush2.test | |
parent | 154c6e06775d6e644fd4e5f863104ab566fc4a68 (diff) | |
download | mariadb-git-e284256ef0f24ea4cb826df1ad321adc3604cf0d.tar.gz |
Bug#17733 Flushing logs causes daily server crash
Server crashes if a flush commmand is issued and binlog is closed.
- added check to prevent binlog access when binlog file isn't opened.
sql/sql_parse.cc:
- removed deprecated environment consistency check.
- added check to prevent binlog access on closed binlog.
mysql-test/t/flush2-master.opt:
- Added test case (master options)
mysql-test/t/flush2.test:
- Added test case
mysql-test/r/flush2.result:
- Added test case (resultfile)
Diffstat (limited to 'mysql-test/t/flush2.test')
-rw-r--r-- | mysql-test/t/flush2.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/flush2.test b/mysql-test/t/flush2.test new file mode 100644 index 00000000000..fc9e88e3141 --- /dev/null +++ b/mysql-test/t/flush2.test @@ -0,0 +1,9 @@ +# +# Bug#17733 Flushing logs causes daily server crash +# +flush logs; +set global expire_logs_days = 3; +show variables like 'log%'; +flush logs; +show variables like 'log%'; +set global expire_logs_days = 0; |