428d851913
* refactor: generic rename to mysql * refactor: g4 with mysql syntax * test: mysql syntax * refactor: remove useless keywords * refactor: remove nonReserved keywords * refactor: lint specificFunction --------- Co-authored-by: liuyi <liuyi@dtstack.com>
17 lines
371 B
SQL
17 lines
371 B
SQL
-- https://dev.mysql.com/doc/refman/8.0/en/alter-instance.html
|
|
|
|
/* ALTER INSTANCE instance_action
|
|
|
|
instance_action: {
|
|
| {ENABLE|DISABLE} INNODB REDO_LOG
|
|
| ROTATE INNODB MASTER KEY
|
|
| ROTATE BINLOG MASTER KEY
|
|
| RELOAD TLS
|
|
[FOR CHANNEL {mysql_main | mysql_admin}]
|
|
[NO ROLLBACK ON ERROR]
|
|
| RELOAD KEYRING
|
|
} */
|
|
|
|
|
|
ALTER INSTANCE ROTATE INNODB MASTER KEY;
|