• Vlad Lesin's avatar
    MDEV-20060: Failing assertion: srv_log_file_size <= 512ULL << 30 while preparing backup · d39d5dd2
    Vlad Lesin authored
    The general reason why innodb redo log file is limited by 512G is that
    log_block_convert_lsn_to_no() returns value limited by 1G. But there is no
    need to have unique log block numbers in log group. The fix removes 512G
    limit and limits log group size by
    (uint32_t maximum value) * (minimum page size), which, in turns, can be
    removed if fil_io() is no longer used for innodb redo log io.
    d39d5dd2
mysql-test-run.pl 190 KB