Comment 0 for bug 771981

Revision history for this message
Valentine Gostev (longbow) wrote :

When we are running incremental backup with innobackupex MyISAM tables are not locked, even if we do not specify option --no-lock

364 if (!$option_incremental) {
 365 # connect to database
 366 mysql_open();
 367
 368 if ( $option_safe_slave_backup ) {
 369 wait_for_safe_slave();
 370 }
 371
 372 # flush tables with read lock
 373 mysql_check();
 374 mysql_lockall() if !$option_no_lock;
 375
 376 }