1. 24 May, 2014 6 commits
  2. 23 May, 2014 1 commit
  3. 22 May, 2014 3 commits
  4. 16 May, 2014 1 commit
  5. 13 May, 2014 1 commit
    • Jan Lindström's avatar
      MDEV-6075: Allow > 16K pages on InnoDB · 9d399c9f
      Jan Lindström authored
      This patch allows up to 64K pages for tables with DYNAMIC, COMPACT 
      and REDUNDANT row types. Tables with COMPRESSED row type allows 
      still only <= 16K page size. Note that single row size must be
      still <= 16K and max key length is not affected.
      9d399c9f
  6. 08 May, 2014 1 commit
  7. 06 May, 2014 3 commits
  8. 05 May, 2014 5 commits
  9. 04 May, 2014 1 commit
  10. 01 May, 2014 7 commits
  11. 28 Apr, 2014 1 commit
  12. 24 Apr, 2014 1 commit
  13. 23 Apr, 2014 3 commits
    • Jan Lindström's avatar
      Fixed bug on free buffer space calculation when LZO is used. · 2d340f9a
      Jan Lindström authored
      Fixed bug on function call when InnoDB plugin is used.
      2d340f9a
    • unknown's avatar
      MDEV-6156: Parallel replication incorrectly caches charset between worker threads · 010971a7
      unknown authored
      Replication caches the character sets used in a query, to be able to quickly
      reuse them for the next query in the common case of them not having changed.
      
      In parallel replication, this caching needs to be per-worker-thread. The
      code was not modified to handle this correctly, so the caching in one worker
      could cause another worker to run a query using the wrong character set,
      causing replication corruption.
      010971a7
    • Sergey Vojtovich's avatar
      MDEV-5792 - Deadlock between SELECTs from METADATA_LOCK_INFO and another · b1232490
      Sergey Vojtovich authored
                  I_S table
      
      mdl_iterate() helper function (which is used by the plugin to iterate mdl
      locks) acquired mutexes in reverse order.
      
      Fixed by iterating MDL locks in two stages:
      1. Iterate locks hash under the protection of hash mutex, store all
         lock pointers in a thread local array and increment reference counter
         for the lock.
      2. Iterate local array without protection of hash mutex, handle destroyed
         locks.
      
      It somewhat echoes hack in MDL_map_partition::move_from_hash_to_lock_mutex.
      b1232490
  14. 05 May, 2014 1 commit
  15. 02 May, 2014 1 commit
  16. 29 Apr, 2014 1 commit
  17. 25 Apr, 2014 2 commits
  18. 28 Apr, 2014 1 commit
    • Sergey Petrunya's avatar
      Revert these two changes (wrong push) : · 182f7d76
      Sergey Petrunya authored
      MDEV-5980: EITS: if condition is used for REF access, its selectivity is still in filtered%
      MDEV-5985: EITS: selectivity estimates look illogical for join and non-key equalities
      MDEV-6003: EITS: ref access, keypart2=const vs keypart2=expr - inconsistent filtered% value
      - Made a number of fixes in table_cond_selectivity() so that it returns
        correct selectivity estimates.
      - Added comments in related code.
      Better comments
      182f7d76