1. 14 Sep, 2018 2 commits
  2. 13 Sep, 2018 5 commits
  3. 12 Sep, 2018 1 commit
  4. 11 Sep, 2018 4 commits
  5. 10 Sep, 2018 1 commit
    • Sergey Vojtovich's avatar
      MDEV-16773 - Assertion failed in tdc_remove_table · e76c4c06
      Sergey Vojtovich authored
      This assertion fails in thread that removes all table instances for
      particular table from table cache (e.g. "DROP TABLE") while another
      thread evicts table instance of the same table from table cache
      concurrently.
      
      After "MDEV-10296 - Multi-instance table cache" there is a gap in
      eviction code of tc_add_table() between removing table from free_tables
      and all_tables not protected by any mutexes.
      
      This is now valid table cache state, however assertion wasn't amended
      along with original patch. Moved assertion down, after waiting for such
      table instances to get closed.
      e76c4c06
  6. 08 Sep, 2018 3 commits
    • Daniel Bartholomew's avatar
      bump the VERSION · f1bcfbb4
      Daniel Bartholomew authored
      f1bcfbb4
    • Jan Lindström's avatar
      Add one more wait for truncate in MW-44. · f01c4a10
      Jan Lindström authored
      f01c4a10
    • Igor Babaev's avatar
      MDEV-17024 Crash on large query · 4d991abd
      Igor Babaev authored
      This problem manifested itself when a join query used two or more
      materialized CTE such that each of them employed the same recursive CTE.
      The bug caused a crash. The crash happened because the cleanup()
      function was performed premature for recursive CTE. This clean up was
      induced by the cleanup of the first CTE referenced the recusrsive CTE.
      This cleanup destroyed the structures that would allow to read from the
      temporary table containing the rows of the recursive CTE and an attempt to read
      these rows for the second CTE referencing the recursive CTE triggered a
      crash.
      The clean up for a recursive CTE R should be performed after the cleanup
      of the last materialized CTE that uses R.
      4d991abd
  7. 07 Sep, 2018 13 commits
  8. 06 Sep, 2018 9 commits
  9. 05 Sep, 2018 2 commits