1. 21 Mar, 2020 1 commit
  2. 20 Mar, 2020 3 commits
    • Eugene Kosov's avatar
      bb24fa31
    • Marko Mäkelä's avatar
      MDEV-21549 IMPORT TABLESPACE fails to adjust all tablespace ID · 95da2113
      Marko Mäkelä authored
      After MDEV-12353, the consistency check that I originally added for
      commit 1b9fe0bb
      (InnoDB Plugin for MySQL 5.1) started randomly failing.
      
      It turns out that the IMPORT TABLESPACE code was always incorrect:
      it did not update the (redundantly stored) tablespace ID
      in index tree root pages. It only does that for page headers
      and BLOB pointers.
      
      PageConverter::update_index_page(): Update the tablespace ID
      in the BTR_SEG_TOP and BTR_SEG_LEAF of index root pages.
      95da2113
    • Daniele Sciascia's avatar
      Fix MTR test galera_3nodes_sr.galera_vote_sr (#1439) · fcc0b89d
      Daniele Sciascia authored
      A large INSERT would occasionally fail with a deadlock error. This
      is due to a limitation in galera library: large writesets that are
      internally fragmented (> 32KB), may fail to replicate during a
      configuration change. Even if the configuration change is from primary
      to primary.
      Changed the test to reduce writeset sizes from ~65K to ~16K.
      fcc0b89d
  3. 19 Mar, 2020 3 commits
  4. 18 Mar, 2020 18 commits
  5. 17 Mar, 2020 13 commits
  6. 16 Mar, 2020 2 commits
    • Vladislav Vaintroub's avatar
      MDEV-18439 · 96b472c0
      Vladislav Vaintroub authored
      It did not work, eventhough the default for Windows was changed to 1
      for the corresponding system variable.
      This be because  test_flags was zeroed mysql_init_variables.
      
      The patch fixes this glitch.
      96b472c0
    • Marko Mäkelä's avatar
      Cleanup: Remove an unused variable · 9cc7edb1
      Marko Mäkelä authored
      log_write_buf(): Remove the unused variable write_header.
      The dependent code was removed in
      commit 0c2365c4.
      That was dead or unnecessary code at least ever since
      commit 9ef2d29f
      removed the support for innodb_log_files_in_group>1.
      9cc7edb1