1. 10 Jan, 2013 2 commits
  2. 09 Jan, 2013 7 commits
  3. 08 Jan, 2013 2 commits
    • Igor Babaev's avatar
      Merge 5.5 -> mwl248 · 7d9df807
      Igor Babaev authored
      7d9df807
    • Igor Babaev's avatar
      Fixed bug mdev-3979. · 01dca17a
      Igor Babaev authored
      Made allocation of memory for statistical data in a table share to be thread safe.
      This memory is now allocated in a special MEM_ROOT that is created for each
      table share.  
      01dca17a
  4. 05 Jan, 2013 1 commit
  5. 01 Jan, 2013 1 commit
  6. 30 Dec, 2012 1 commit
  7. 28 Dec, 2012 1 commit
    • Elena Stepanova's avatar
      storage_engine tests and upstream engines/* suites went out of sync with... · 2371b6df
      Elena Stepanova authored
      storage_engine tests and upstream engines/* suites went out of sync with current MariaDB code. Reasons:
        - as of 5.5.27, YEAR(2) is deprecated, hence the new warning;
        - MDEV-553 - different error code/message on out-of-range autoincrement;
        - INSERT IGNORE now produces a warning if a duplicate was encountered (change pushed along with MDEV-553)
      
      2371b6df
  8. 24 Dec, 2012 1 commit
    • Sergey Petrunya's avatar
      Post-merge fixes: · ffd5f8c8
      Sergey Petrunya authored
      - update ha_cassandra::start_bulk_insert() definition to match those in class handler.
      ffd5f8c8
  9. 23 Dec, 2012 3 commits
  10. 20 Dec, 2012 6 commits
  11. 18 Dec, 2012 2 commits
  12. 17 Dec, 2012 7 commits
  13. 14 Dec, 2012 4 commits
  14. 13 Dec, 2012 2 commits
    • unknown's avatar
      MDEV-452 Add full support for auto-initialized/updated timestamp and datetime · 6e8c4d69
      unknown authored
      Post-review changes according to Monty's review from 28/11/2012.
      6e8c4d69
    • Igor Babaev's avatar
      Fixed bug mdev-3891. · 65820439
      Igor Babaev authored
      If a query referenced some system statistical tables, but not all of them,
      then executing an ANALYZE command simultaneously with this query could
      lead to a deadlock.
      The fix prohibited reading statistics from system statistical tables
      for such queries.
      
      Removed the function unlock_tables_n_open_system_tables_for_write()
      as not used anymore.
      Performed some minor refactoring of the code in sql_statistics.cc. 
      65820439