1. 01 Oct, 2014 15 commits
  2. 30 Sep, 2014 1 commit
    • Jan Lindström's avatar
      MDEV-6812: Merge Kakao: Add global status variables which tell · fc2df3c6
      Jan Lindström authored
      you the progress of inplace alter table and row log buffer usage
      
      -    (x 100%, it's 4-digit. 10000 means 100.00%)
      -    Innodb_onlineddl_rowlog_rows
             Shows how many rows are stored in row log buffer.
      -    Innodb_onlineddl_rowlog_pct_used
             Shows row log buffer usage in percent ( *100%, it's 4-digit. 10000 means 100.00% ).
      -    Innodb_onlineddl_pct_progress
             Shows the progress of inplace alter table. It might
             be not so accurate because inplace alter is highly
             depend on disk and buffer pool status.
             But still it is useful and better than nothing.
      
      -    Add some log for inplace alter table
             XtraDB/InnoDB will print some message before and
             after doing some task.
      fc2df3c6
  3. 26 Sep, 2014 2 commits
  4. 25 Sep, 2014 8 commits
  5. 24 Sep, 2014 2 commits
    • Monty's avatar
      Fixed failing test temp_table_frm · 3f2d9a90
      Monty authored
      The problem was that the internal temporary table created
      for information_schema overflow to MyISAM because it has
      a row width of > 3000 characters, which filled the in memory
      temporary tables.
      Fix was to increase size for the heap table.
      3f2d9a90
    • Sergei Petrunia's avatar
      Better comments · f5d84542
      Sergei Petrunia authored
      f5d84542
  6. 11 Sep, 2014 1 commit
  7. 10 Sep, 2014 3 commits
  8. 09 Sep, 2014 3 commits
  9. 08 Sep, 2014 4 commits
  10. 03 Sep, 2014 1 commit
    • Sergei Petrunia's avatar
      MDEV-6689: valgrind errors in view.test in 10.1 · d161546b
      Sergei Petrunia authored
      SHOW COLUMNS and SHOW KEYS commands fill IS_table_read_plan
      in a special way - they don't set or use lookup_field_vals
      member.
      
      Added a "trivial_show_command" flag that signals that
      lookup_field_vals has no valid data, made EXPLAIN code honor it.
      d161546b