1. 18 Dec, 2009 2 commits
  2. 17 Dec, 2009 1 commit
  3. 16 Dec, 2009 5 commits
  4. 15 Dec, 2009 7 commits
  5. 14 Dec, 2009 3 commits
  6. 12 Dec, 2009 1 commit
    • Alexander Nozdrin's avatar
      Manual merge from mysql-trunk-merge. · e5588c7d
      Alexander Nozdrin authored
      Conflicts:
        - extra/comp_err.c
        - mysql-test/collections/default.experimental
        - mysql-test/r/archive.result
        - mysql-test/r/select.result
        - mysql-test/suite/binlog/r/binlog_unsafe.result
        - mysql-test/suite/binlog/t/binlog_unsafe.test
        - mysql-test/suite/rpl/t/disabled.def
        - mysql-test/t/archive.test
        - mysql-test/t/select.test
        - sql/item.cc
        - sql/item.h
        - sql/item_timefunc.cc
        - sql/sql_base.cc
        - sql/sql_delete.cc
        - sql/sql_load.cc
        - sql/sql_partition.cc
        - sql/sql_table.cc
        - storage/innobase/handler/ha_innodb.cc
        - vio/vio.c
      e5588c7d
  7. 11 Dec, 2009 10 commits
  8. 10 Dec, 2009 6 commits
  9. 09 Dec, 2009 2 commits
  10. 08 Dec, 2009 3 commits
    • Magne Mahre's avatar
      Bug#35589 SET PASSWORD caused a crash · 4ad324db
      Magne Mahre authored
      Bug#35591 FLUSH PRIVILEGES caused a crash
      
      A race condition on the privilege hash tables (proc_priv_hash
      and func_priv_hash) caused one thread to try to delete elements
      that had already been deleted by another thread.
      
      The bug was caused by reading and saving the pointers to 
      the hash tables outside mutex protection.  This led to an
      inconsistency where a thread copied a pointer to a hash,
      another thread did the same, the first thread then deleted
      the hash, and the second then crashed when it in turn tried to
      delete the deleted hash.
      
      The fix is to ensure that operations on the shared hash structures
      happens under mutex protection (moving the locking up a little)
      
      
      4ad324db
    • V Narayanan's avatar
      merging with mysql-next-mr-svoj · 92334e30
      V Narayanan authored
      92334e30
    • Mikael Ronstrom's avatar
      Fixed --fast flag on Linux to use -O3 · b90ee6dc
      Mikael Ronstrom authored
      b90ee6dc