diff options
author | Sujatha <sujatha.sivakumar@mariadb.com> | 2021-05-11 20:10:54 +0530 |
---|---|---|
committer | Sujatha <sujatha.sivakumar@mariadb.com> | 2021-05-17 12:48:37 +0530 |
commit | 7e1ec1550ceff29a983bf799622d97b73b79ce43 (patch) | |
tree | 5add179a0d62ffd1be1da547dc0a546cda627626 /mysql-test/main/mysqld--help.result | |
parent | 1b1882c6270ad9648502c4267ace3d40fff1ccfc (diff) | |
download | mariadb-git-7e1ec1550ceff29a983bf799622d97b73b79ce43.tar.gz |
MDEV-19371: Implement binlog_expire_logs_seconds for purging of binary logs
Post push fixes.
* Set binlog_expire_logs_seconds max valid value to 8553600
i.e 99 * 24 * 60 * 60 (99 days)
Diffstat (limited to 'mysql-test/main/mysqld--help.result')
-rw-r--r-- | mysql-test/main/mysqld--help.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/main/mysqld--help.result b/mysql-test/main/mysqld--help.result index 73f4b512ed5..5857d234525 100644 --- a/mysql-test/main/mysqld--help.result +++ b/mysql-test/main/mysqld--help.result @@ -79,8 +79,8 @@ The following specify which files/extra groups are read (specified before remain --binlog-expire-logs-seconds=# If non-zero, binary logs will be purged after binlog_expire_logs_seconds seconds; It and - expire_logs_days are aliases, such that changes in one - are converted into the other. Possible purges happen at + expire_logs_days are linked, such that changes in one are + converted into the other. Possible purges happen at startup and at binary log rotation. --binlog-file-cache-size=# The size of file cache for the binary log @@ -275,7 +275,7 @@ The following specify which files/extra groups are read (specified before remain --expire-logs-days=# If non-zero, binary logs will be purged after expire_logs_days days; It and binlog_expire_logs_seconds - are aliases, such that changes in one are converted into + are linked, such that changes in one are converted into the other, presentable as a decimal value with 1/1000000 of the day precision; possible purges happen at startup and at binary log rotation |