1. 23 Nov, 2012 1 commit
  2. 22 Nov, 2012 2 commits
  3. 20 Nov, 2012 2 commits
    • unknown's avatar
      Merge MariaDB 5.1->5.2. · cbae2943
      unknown authored
      cbae2943
    • unknown's avatar
      MDEV-3861: assertions in TC_LOG_MMAP. · 47c5018f
      unknown authored
      Fix some problems in the TC_LOG_MMAP commit processing, which could
      lead to assertions in some cases.
      
      Problems are mostly reproducible in MariaDB 10.0 with asynchroneous
      commit checkpoints, but most of the problems were present in earlier
      versions also.
      47c5018f
  4. 19 Nov, 2012 1 commit
  5. 17 Nov, 2012 1 commit
  6. 12 Nov, 2012 1 commit
  7. 10 Nov, 2012 2 commits
    • Vladislav Vaintroub's avatar
      MDEV-3849 - 1 bytes stack overwrite in normalize_dirname(). · 35313020
      Vladislav Vaintroub authored
      Take into account that length of strings passed down to this function can be up to FN_REFLEN+1 bytes. including terminating zero.
      The overwrite was caused by incomplete fix to MySQL Bug # 44834
      35313020
    • Igor Babaev's avatar
      Fixed bug mdev-3845. · 094f4cf7
      Igor Babaev authored
      If triggers are used for an insert/update/delete statement than the values of
      all virtual columns must be computed as any of them may be used by the triggers.
      094f4cf7
  8. 09 Nov, 2012 3 commits
  9. 08 Nov, 2012 3 commits
  10. 07 Nov, 2012 1 commit
  11. 06 Nov, 2012 1 commit
  12. 02 Nov, 2012 1 commit
  13. 01 Nov, 2012 3 commits
  14. 31 Oct, 2012 4 commits
  15. 09 Oct, 2012 1 commit
  16. 14 Oct, 2012 1 commit
  17. 02 Oct, 2012 1 commit
  18. 27 Sep, 2012 2 commits
  19. 26 Sep, 2012 3 commits
  20. 25 Sep, 2012 1 commit
  21. 26 Sep, 2012 1 commit
  22. 24 Sep, 2012 2 commits
  23. 14 Sep, 2012 1 commit
    • unknown's avatar
      Fix bug lp:1009187, mdev-373, mysql bug#58628 · b917fb63
      unknown authored
      Analysis:
      The queries in question use the [unique | index]_subquery execution methods.
      These methods reuse the ref keys constructed by create_ref_for_key(). The
      way create_ref_for_key() works is that it doesn't store in ref.key_copy[]
      store_key elements that represent constants. In particular it doesn't store
      the store_key for NULL constants.
      
      The execution of [unique | index]_subquery calls
      subselect_uniquesubquery_engine::copy_ref_key, which in addition to copy
      the left IN argument into a index lookup key, is supposed to detect if
      the left IN argument contains NULLs. Since the store_key for the NULL
      constant is not copied into the key array, the null is not detected, and
      execution erroneously proceeds as if it should look for a complete match.
      
      Solution:
      The solution (unlike MySQL) is to reuse already computed information about
      NULL presence. Item_in_optimizer::val_int already finds out if the left IN
      operand contains NULLs. The fix propagates this to the execution methods
      subselect_[unique | index]subquery_engine::exec so it knows if there were
      NULL values independent of the presence of keys.
      
      In addition the patch siplifies copy_ref_key() and the logic that hanldes
      the case of NULLs in the left IN operand.
      b917fb63
  24. 11 Sep, 2012 1 commit