|
I noticed that mariabackup's backup_mysql.cc contains some backup stage queries commented out:
xb_mysql_query(connection, "BACKUP STAGE START", true);
|
//xb_mysql_query(connection, "BACKUP STAGE FLUSH", true);
|
//xb_mysql_query(connection, "BACKUP STAGE BLOCK_DDL", true);
|
xb_mysql_query(connection, "BACKUP STAGE BLOCK_COMMIT", true);
|
https://github.com/MariaDB/server/blob/mariadb-10.4.5/extra/mariabackup/backup_mysql.cc#L904
If these are not needed, then maybe they should be removed?
If these should be left for some reason, then maybe a comment could be added that explains why they are commented out?
|