We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MySQL allow duplicate field, likebinlog_do_db
binlog_do_db
[mysqld] binlog_do_db = db3 binlog_do_db = db4 # other fields
in mysql we can get the result
mysql> show master status\G *************************** 1. row *************************** File: binlog.000022 Position: 157 Binlog_Do_DB: db3,db4 Binlog_Ignore_DB: Executed_Gtid_Set: 1 row in set (0.00 sec)
but in MysqlCluster resource, mysqlConf field is a map[string]string, not allowed to do this, if in IDE will warn us
spec: backupRemoteDeletePolicy: delete image: docker.m.daocloud.io/library/mysql:5.7.31 mysqlConf: binlog-format: ROW binlog_do_db: db3 binlog_do_db: db4
if we apply this cr, in running mysql,only one value
mysql> show master status\G *************************** 1. row *************************** File: mysql-bin.000003 Position: 154 Binlog_Do_DB: db4 Binlog_Ignore_DB: Executed_Gtid_Set: 1 row in set (0.00 sec)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
MySQL allow duplicate field, like
binlog_do_db
in mysql we can get the result
but in MysqlCluster resource, mysqlConf field is a map[string]string, not allowed to do this, if in IDE will warn us
if we apply this cr, in running mysql,only one value
The text was updated successfully, but these errors were encountered: