1. 25 Mar, 2020 4 commits
  2. 24 Mar, 2020 2 commits
  3. 23 Mar, 2020 1 commit
  4. 21 Mar, 2020 7 commits
  5. 20 Mar, 2020 10 commits
  6. 19 Mar, 2020 8 commits
  7. 18 Mar, 2020 5 commits
  8. 17 Mar, 2020 3 commits
    • Monty's avatar
      Updated aria_pack to support transactional tables · dbde95d9
      Monty authored
      Added options:
      --datadir
      --ignore-control-file
      --require-control-file
      
      - Improved error messages if open fails
      - If control file can't be found/opened, assume that all rows in the
        tables are commited.
      dbde95d9
    • Marko Mäkelä's avatar
      MDEV-20370 Crash after OPTIMIZE TABLE on TEMPORARY TABLE · ab0034a7
      Marko Mäkelä authored
      Temporary tables are typically short-lived, and temporary tables
      are assumed to be accessed only by the thread that is handling
      the owning connection. Hence, they must not be subject to
      defragmenting.
      
      ha_innobase::optimize(): Do not add temporary tables to
      the defragment_table() queue.
      ab0034a7
    • Thirunarayanan Balathandayuthapani's avatar
      MDEV-14808 innodb_fts.sync fails in buildbot with wrong result · e61b9907
      Thirunarayanan Balathandayuthapani authored
      AUTO_INCREMENT values are nondeterministic after crash recovery.
      While MDEV-6076 guarantees that the AUTO_INCREMENT values of committed
      transactions will not roll back, it is possible that the AUTO_INCREMENT
      values will be durably incremented for incomplete transactions. So
      changing the test case to avoid showing the result of AUTO_INCREMENT value.
      e61b9907