• marko's avatar
    branches/zip: Distinguish temporary tables in MLOG_FILE_CREATE. · bd237c4b
    marko authored
    This addresses Mantis Issue #23 in InnoDB Hot Backup and some
    of MySQL Bug #41609.
    
    In MLOG_FILE_CREATE, we need to distinguish temporary tables, so that
    InnoDB Hot Backup can work correctly.  It turns out that we can do this
    easily, by using a bit of the previously unused parameter for page number.
    (The page number parameter of MLOG_FILE_CREATE has been written as 0 
    ever since MySQL 4.1, which introduced MLOG_FILE_CREATE.)
    
    MLOG_FILE_FLAG_TEMP: A flag for indicating a temporary table in
    the page number parameter of MLOG_FILE_ operations.
    
    fil_op_write_log(): Add the parameter log_flags.
    
    fil_op_log_parse_or_replay(): Add the parameter log_flags.
    Do not replay MLOG_FILE_CREATE when MLOG_FILE_FLAG_TEMP is set in log_flags.
    This only affects ibbackup --apply-log.  InnoDB itself never replays file
    operations.
    
    rb://117 approved by Heikki Tuuri
    bd237c4b
mtr0mtr.h 13.9 KB