1. 20 Dec, 2012 3 commits
  2. 18 Dec, 2012 2 commits
  3. 17 Dec, 2012 7 commits
  4. 14 Dec, 2012 4 commits
  5. 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
  6. 10 Dec, 2012 1 commit
  7. 08 Dec, 2012 1 commit
    • Igor Babaev's avatar
      Addressed the following issue from the review of the patch for · 2447bc4c
      Igor Babaev authored
      engine-independent statistics.
      When the primary key was dropped or changed statistics on secondary
      indexes for the prefixes that included components of the primary 
      key was not removed from the table mysql.index_stats.
      
      Also fixed: in the some cases when a column was changed statistics
      on the indexes that included this column was not removed from the
      table mysql.index_stats.
      
      Also disabled the test mdev-504 for --ps-protocol.
      2447bc4c
  8. 06 Dec, 2012 1 commit
    • Igor Babaev's avatar
      Addressed the following issues from the review of the patch: · dd119466
      Igor Babaev authored
      1. The PERSISTENT FOR clause of the ANALYZE command overrides
      the setting of the system variable use_stat_tables: 
      with this clause ANALYZE unconditionally collects persistent
      statistics.
      2. ANALYZE collects persistent statistics only for tables of
      the USER category. So it never collects persistent statistics
      for system tables.  
      dd119466
  9. 05 Dec, 2012 4 commits
    • Igor Babaev's avatar
      Adjusted results for a test. · 81563081
      Igor Babaev authored
      The adjustment was supposed to be done in the previous commit.
      81563081
    • Igor Babaev's avatar
      Changed the names of the system tables for statistical data: · b1101325
      Igor Babaev authored
        table_stat  -> table_stats
        column_stat -> column_stats
        index_stat  -> index_stats
      to be in line with the names of innodb statistical tables 
      from mysql-5.6: innodb_table_stats and innodb_index_stats.
      b1101325
    • Igor Babaev's avatar
      Merge 5.5->mwl248 · f8bfb65b
      Igor Babaev authored
      f8bfb65b
    • Igor Babaev's avatar
      Fixed bug mdev-3888. · 5e345281
      Igor Babaev authored
      When inserting a record with update on duplicate keys the server calls
      the ha_index_read_idx_map handler function to look for the record
      that violates unique key constraints. The third parameter of this call
      should mark only the base components of the index where the server is
      searched for the record. Possible hidden components of the primary key
      are to be unmarked.
      5e345281
  10. 01 Dec, 2012 2 commits
  11. 27 Nov, 2012 3 commits
  12. 26 Nov, 2012 3 commits
  13. 22 Nov, 2012 2 commits
  14. 21 Nov, 2012 2 commits
  15. 20 Nov, 2012 1 commit
    • unknown's avatar
      MDEV-3861: Assertion in TC_LOG_MMAP. · 6058b654
      unknown authored
      Root cause was that number of entries in commit checkpoint buffer
      was bigger than total available entries in the mmap()'ed score
      file. This causes TC_LOG_MMAP to run out of entries before even
      the first checkpoint is started, which causes a hang.
      
      Fixed by making sure we have fewer entries within one commit
      checkpoint than total available scorefile entries.
      
      Another part of this bug was discovery of severel unrelated bugs
      in TC_LOG_MMAP dating back to 5.1. These were fixed in 5.1 and
      will be merged up (the problem this patch fixes exists only in
      10.0).
      6058b654
  16. 19 Nov, 2012 1 commit
    • Igor Babaev's avatar
      Fixed bug mdev-3866. · e42024cd
      Igor Babaev authored
      The invalid implementation of the method Field_bit::cmp_max could
      trigger a valgrind complain or could lead to incorrect statistical
      data when collecting engine-independent statistics on BIT fields.
      e42024cd
  17. 17 Nov, 2012 1 commit
    • Sergei Golubchik's avatar
      MDEV-736 LP:1004615 - Unexpected warnings "Encountered illegal value '' when... · 13ba0dd2
      Sergei Golubchik authored
      MDEV-736 LP:1004615 - Unexpected warnings "Encountered illegal value '' when converting to DECIMAL" on a query with aggregate functions and GROUP BY
      
      fix: don't call field->val_decimal() if the field->is_null()
      because the buffer at field->ptr might not hold a valid decimal value
      
      sql/item_sum.cc:
        do not call field->val_decimal() if the field->is_null()
      storage/maria/ma_blockrec.c:
        cleanup
      storage/maria/ma_rrnd.c:
        cleanup
      strings/decimal.c:
        typo
      13ba0dd2