1. 01 Aug, 2017 1 commit
  2. 30 Jul, 2017 5 commits
  3. 29 Jul, 2017 3 commits
  4. 27 Jul, 2017 5 commits
  5. 24 Jul, 2017 1 commit
  6. 22 Jul, 2017 1 commit
  7. 21 Jul, 2017 1 commit
    • Jan Lindström's avatar
      MDEV-13325: InnoDB assert dict_sys->size > 0 during ALTER TABLE · 92cbe388
      Jan Lindström authored
      Problem was that dict_sys->size tries to maintain used memory
      occupied by the data dictionary table and index objects.
      However at least on table objects table->heap size can increase
      between when table object is inserted to dict_sys and when
      it is removed from dict_sys causing inconsistency on amount
      of memory added to and removed from dict_sys->size variable.
      
      Removed unnecessary dict_sys:size variable as it is really
      used only for status output.
      
      Introduced dict_sys_get_size function to calculate memory
      occupied by the data dictionary table and index objects
      that is then used on show engine innodb output.
      
      dict_table_add_to_cache(),
      dict_table_rename_in_cache(),
      dict_table_remove_from_cache_low(),
      dict_index_remove_from_cache_low(),
      	Remove size calculation.
      
      srv_printf_innodb_monitor(): Use dict_sys_get_size function to
      get dictionary memory allocated.
      
      xtradb_internal_hash_tables_fill_table(): Use dict_sys_get_size
      function to get dictionary memory allocated.
      92cbe388
  8. 20 Jul, 2017 6 commits
  9. 19 Jul, 2017 2 commits
    • Daniel Bartholomew's avatar
      bump the VERSION · c8a0244e
      Daniel Bartholomew authored
      c8a0244e
    • Sachin Setiya's avatar
      MDEV-13065 rpl.rpl_mdev-11092 fails sporadically in buildbot · 76f7aac8
      Sachin Setiya authored
      Problem
      rpl.rpl_mdev-11092 fails in buildbot because after starting slave in
      wait_for_slave_sql_error_and_skip.inc slave is started but there may be
      chances that we have not skipped the last error and Last_SQL_Errno is
      still not zero untill the end of rpl_end.inc , which will compare
      Last_SQL_Errno to 0. So in this this case rpl_mdev-11092 fails.
      
      Solution
      After starting slave in wait_for_slave_sql_error_and_skip.inc we will wait for
      Last_SQL_Errno to become 0.
      76f7aac8
  10. 18 Jul, 2017 12 commits
  11. 17 Jul, 2017 2 commits
  12. 15 Jul, 2017 1 commit