1. 31 Aug, 2016 11 commits
  2. 30 Aug, 2016 5 commits
  3. 29 Aug, 2016 4 commits
    • Monty's avatar
      Fixed failures for privilege_table_io and wsrep_cluster_address_basic · bbfb5d7c
      Monty authored
      - Sometimes privilege_table_io printed double rows of roles_mapping
        - Fixed by forcing restart of server when running test
      - Wsrep_cluster_address_basic failed in some combinations because
        wsrep_cluster_address was set to NULL
        - Fixed by ensuring it's never set to NULL, only empty string
      bbfb5d7c
    • Monty's avatar
      Set server_id to 1 by default and disallow to set it to 0 · 1c915692
      Monty authored
      This makes it easier to setup master as on only have to set --log-bin.
      Before this patch if one did set up the master with just --log-bin, slaves
      could not connect until server_id was set on the master, which could be
      both confusing and hard to do.
      1c915692
    • Monty's avatar
    • Monty's avatar
      Better SHOW PROCESSLIST for replication · 96e95b54
      Monty authored
      - When waiting for events, start time is now counted from start of wait
      - Instead of having "Connect" as "Command" for all replication threads we
        now have:
        - Slave_IO for Slave thread reading relay log
        - Slave_SQL for slave executing SQL commands or distribution queries to
          Slave workers
        - Slave_worker for slave threads executin SQL commands in parallel replication
      96e95b54
  4. 27 Aug, 2016 18 commits
  5. 26 Aug, 2016 2 commits
    • Igor Babaev's avatar
      mdev-9864: cleanup, re-factoring. · c8f85bf2
      Igor Babaev authored
      Added comments.
      c8f85bf2
    • Alexander Kuleshov's avatar
      Call profiling.restart() and profiling.reset() only if profiling is enabled · e7f54437
      Alexander Kuleshov authored
      in other case we will get:
      
      ../alex/dev/server/sql/sql_class.cc: In member function ‘void THD::free_connection()’:
      ../server/sql/sql_class.cc:1664:3: error: ‘profiling’ was not declared in this scope
         profiling.restart();                          // Reset profiling
            ^~~~~~~~~
      
      ../server/sql/sql_class.cc: In member function ‘void THD::reset_for_reuse()’:
      ../server/sql/sql_class.cc:1689:3: error: ‘profiling’ was not declared in this scope
        profiling.reset();
             ^~~~~~~~~
      
      errors.
      e7f54437