1. 08 Nov, 2021 3 commits
  2. 06 Nov, 2021 1 commit
    • Thirunarayanan Balathandayuthapani's avatar
      MDEV-26956 LeakSanitizer/Valgrind errors in... · 8c9cc2fb
      Thirunarayanan Balathandayuthapani authored
      MDEV-26956 LeakSanitizer/Valgrind errors in trx_mod_table_time_t::start_bulk_insert upon adding system versioning
      
       InnoDB fails to apply buffered insert operation for
      'mysql/transaction_registry' table during system versioning DDL.
      To avoid this, DDL calls extra(HA_EXTRA_IGNORE_INSERT) to
      inform the InnoDB for applying the buffered insert operation.
      8c9cc2fb
  3. 05 Nov, 2021 8 commits
  4. 04 Nov, 2021 9 commits
  5. 03 Nov, 2021 6 commits
  6. 02 Nov, 2021 12 commits
  7. 01 Nov, 2021 1 commit
    • Marko Mäkelä's avatar
      MDEV-26933 InnoDB fails to detect page number mismatch · 993b8edf
      Marko Mäkelä authored
      mtr_t::page_lock(): Validate the page number.
      
      ibuf_tree_root_get(): Remove assertions that became redundant.
      
      The assertions in btr_validate_level() are kind of redundant as well,
      but because they are ut_a(), they are also present in release builds,
      while the ones in mtr_t::page_lock() are only present in debug builds.
      
      btr_cur_position(): Do not duplicate an assertion that is part of
      page_cur_position().
      
      dict_load_tablespace(): Introduce a new option
      DICT_ERR_IGNORE_TABLESPACE that will suppress loading a tablespace
      when a table is going to be dropped.
      993b8edf