1. 08 Sep, 2014 3 commits
  2. 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
  3. 29 Aug, 2014 1 commit
    • Jan Lindström's avatar
      Merge revision 3882 from lp:maria/maria-10.0-galera · e44751b6
      Jan Lindström authored
        MDEV-6656: Test wsrep.variables hangs
      
        Analysis: wsrep_applier_thread shutdown signaling does not always work
        correctly causing a timing problem where main thread is waiting in a
        condition variable a signal that all worker threads to end.
      e44751b6
  4. 28 Aug, 2014 2 commits
  5. 27 Aug, 2014 6 commits
  6. 26 Aug, 2014 6 commits
  7. 24 Aug, 2014 1 commit
  8. 22 Aug, 2014 2 commits
  9. 21 Aug, 2014 2 commits
  10. 19 Aug, 2014 1 commit
    • Sergey Vojtovich's avatar
      MDEV-4262 - P_S discovery · f1c1c04a
      Sergey Vojtovich authored
      Discover P_S tables automatically.
      
      Most of this patch is code clean-up:
      - removed tests and code responsible for P_S tables correctness verification
      - always return error from ha_perfschema::create()
      - install/upgrade scripts won't create P_S tables anymore
      f1c1c04a
  11. 18 Aug, 2014 2 commits
  12. 13 Aug, 2014 4 commits
  13. 09 Aug, 2014 4 commits
    • Monty's avatar
      Made sql_log_slow a session variable · e2b2bde3
      Monty authored
      mysqldump:
      - Added --log-queries to allow one to disable logging for the dump
      
      sql/log_event.cc:
      - Removed setting of enable_slow_log as it's not required anymore.
      
      sql/sql_parse.cc:
      - Set enable_slow_log to value of thd->variables.sql_log_slow as this will speed up tests if slow log is disabled.
      - opt_log_slow_admin_statements can now only disable slow log, not enable it.
      
      sql/sql_explain.cc:
      - Minor cleanup
      
      Other things:
      - Added sql_log_slow to system variables.
      - Changed opt_slow_log to global_system_variables.sql_log_slow in all files
      - Updated tests to reflect changes
      e2b2bde3
    • Monty's avatar
      Changes for using build scripts · 7375f025
      Monty authored
      Removed -DSECURITY_HARDENED=OFF for debug build scripts
      ignore configure
      7375f025
    • Monty's avatar
      Change MySQL -> MariaDB inc scripts · b4c74e2a
      Monty authored
      b4c74e2a
    • Monty's avatar
      Minor cleanups, fix compiler warnings · 3bde1393
      Monty authored
      3bde1393
  14. 07 Aug, 2014 2 commits
  15. 06 Aug, 2014 2 commits
    • Jan Lindström's avatar
      MDEV-6247: Merge 10.0-galera to 10.1. · 5ebb3966
      Jan Lindström authored
      Merged lp:maria/maria-10.0-galera up to revision 3867.
      5ebb3966
    • Jan Lindström's avatar
      MDEV-5834: Merge Kakao Defragmentation implementation to MariaDB 10.1 · 6dad23f0
      Jan Lindström authored
          Merge https://github.com/kakao/mariadb-10.0 that contains Facebook's
          implementation for defragmentation
      
          facebook/mysql-5.6@a2d3a74
          facebook/mysql-5.6@def96c8
          facebook/mysql-5.6@9c67c5d
          facebook/mysql-5.6@921a81b
          facebook/mysql-5.6@aa519bd
          facebook/mysql-5.6@fea7d13
          facebook/mysql-5.6@09b29d3
          facebook/mysql-5.6@9284abb
          facebook/mysql-5.6@dbd623d
          facebook/mysql-5.6@aed55dc
          facebook/mysql-5.6@aad5c82
      
          This version does not add new SQL-syntax and new handler API function.
          Instead optimize table is mapped to defragment table if
          innodb_defragment=ON, by default the feature is off.
      
          Contains changes authored by Sunguck Lee (Kakao).
      6dad23f0
  16. 31 Jul, 2014 1 commit
    • Jan Lindström's avatar
      MDEV-6512: InnoDB: Assertion failure in thread 4537024512 in file · e974b564
      Jan Lindström authored
      buf0buf.cc line 2642.
      
      Analysis: innodb_compression_algorithm is a global variable and
      can change while we are building page compressed page. This could
      lead page corruption.
      
      Fix: Cache innodb_compression_algorithm on local variable before
      doing any compression or page formating to avoid concurrent
      change. Improved page verification on debug builds.
      e974b564