1. 31 Oct, 2019 4 commits
  2. 30 Oct, 2019 21 commits
  3. 29 Oct, 2019 5 commits
  4. 28 Oct, 2019 8 commits
  5. 25 Oct, 2019 2 commits
    • Marko Mäkelä's avatar
      Merge 10.1 to 10.2 · d752a97e
      Marko Mäkelä authored
      d752a97e
    • Thirunarayanan Balathandayuthapani's avatar
      MDEV-20621 FULLTEXT INDEX activity causes InnoDB hang · a41d4297
      Thirunarayanan Balathandayuthapani authored
      - fts_optimize_thread() uses dict_table_t object instead of table id.
      So that it doesn't acquire dict_sys->mutex. It leads to remove the
      hang of dict_sys->mutex between fts_optimize_thread() and other threads.
      
      - in_queue to indicate whether the table is in fts_optimize_queue. It
      is protected by fts_optimize_wq->mutex to avoid any race condition.
      
      - fts_optimize_init() adds the fts table to the fts_optimize_wq
      a41d4297