1. 12 Mar, 2014 3 commits
    • Sergei Golubchik's avatar
      typo fixed · 4e29d31c
      Sergei Golubchik authored
      4e29d31c
    • Michael Widenius's avatar
      MDEV-5619: CREATE OR REPLACE does not release MDL_EXCLUSIVE upon failure · f320b12c
      Michael Widenius authored
      
      mysql-test/r/create_or_replace.result:
        Added test of releasing of metadata locks
      mysql-test/t/create_or_replace.test:
        Added test of releasing of metadata locks
      sql/handler.h:
        Added marker if table was deleted as part of CREATE OR REPLACE
      sql/sql_base.cc:
        Added Locked_tables_list::unlock_locked_table()
      sql/sql_class.h:
        New prototypes
      sql/sql_insert.cc:
        Unlock metadata locks for deleted table in case of error. Also do unlock tables if this was the only locked table.
      sql/sql_table.cc:
        Unlock metadata locks for deleted table in case of error. Also do unlock tables if this was the only locked table.
      f320b12c
    • Michael Widenius's avatar
      Fixed some failing tests · 49ca12a1
      Michael Widenius authored
      Remove memory warnings if mysql client aborts early
      Changed copyright for clients
      
      client/mysql.cc:
        Free memory if get_options fails, so that we don't get warnings from safemalloc
      include/welcome_copyright_notice.h:
        Added SkySQL to client copyrights
      mysql-test/valgrind.supp:
        Added suppressions for memory leaks from dlopen() for OpenSUSE 12.3
      storage/oqgraph/mysql-test/oqgraph/regression_mdev5744.result:
        Suppress warning
      storage/oqgraph/mysql-test/oqgraph/regression_mdev5744.test:
        Suppress warning
      49ca12a1
  2. 07 Mar, 2014 1 commit
    • Sergey Vojtovich's avatar
      MDEV-5766 - my_atomic_load does memory writes · 9836fd5d
      Sergey Vojtovich authored
      my_atomic_load() is implemented as __sync_fetch_and_or(var, 0) which
      writes or-ed value back to var. Memory writes as such have worse
      performance and scalability than reads.
      
      gcc 4.7 and up offers better facility for atomic loads/stores. Use it
      whenever it is available.
      9836fd5d
  3. 10 Mar, 2014 4 commits
    • Elena Stepanova's avatar
      Increase version number · 6dda6428
      Elena Stepanova authored
      6dda6428
    • Elena Stepanova's avatar
      The test had synchronization point, but did not save master position · f62eec52
      Elena Stepanova authored
      before that, which caused indeterministic outcome
      f62eec52
    • Michael Widenius's avatar
      Fixed MDEV-5724 "Server crashes on SQL select containing more group by and... · 3b55c2fe
      Michael Widenius authored
      Fixed MDEV-5724 "Server crashes on SQL select containing more group by and left join statements using innodb tables"
      
      The problem was that a big record was allocated on the stack, which casued stack to run out.
      
      Fixed by using my_safe_alloca() instead of my_alloca() when allocating records.
      Now only records <= 16384 are allocated on the stack.
      
      mysql-test/r/stack-crash.result:
        Added test case
      mysql-test/t/stack-crash.test:
        Added test case
      storage/maria/ma_blockrec.c:
        Use my_safe_alloca() instead of my_alloca()
      storage/maria/ma_dynrec.c:
        Use my_safe_alloca() instead of my_alloca()
      storage/maria/maria_def.h:
        Added MARIA_MAX_RECORD_ON_STACK
      storage/maria/maria_pack.c:
        Use my_safe_alloca() instead of my_alloca()
      3b55c2fe
    • Michael Widenius's avatar
      Fixed MDEV-5780 "create-big fails in 10.0" · b07f9f72
      Michael Widenius authored
      The issue was that create...trigger part of the test suite used a debug_sync point that before was never triggered (in other words, wrong meaningless test).
      With the new create ... replace code the debug sync point is triggered and the test case could not handled that.
      
      I fixed this by adding a wait and go for the debug syncpoint in the test.
      
      Removed some compiler warnings from mysql_cond_timedwait
      
      
      include/mysql/psi/mysql_thread.h:
        Removed compiler warnings
      mysql-test/r/create-big.result:
        New test result
      mysql-test/t/create-big.test:
        Fixed test case as create_table_select_before_check_if_exists was not before triggered by the code.
      b07f9f72
  4. 08 Mar, 2014 1 commit
  5. 07 Mar, 2014 6 commits
  6. 06 Mar, 2014 3 commits
  7. 05 Mar, 2014 1 commit
  8. 04 Mar, 2014 12 commits
  9. 03 Mar, 2014 2 commits
    • Sergey Petrunya's avatar
      MDEV-5778: Valgrind failure in innodb_ext_keys.test · 24d9bf82
      Sergey Petrunya authored
      - Fix valgrind failure: make test_if_order_by_key() account for extended keys 
        feature.
      24d9bf82
    • unknown's avatar
      MDEV-5764: START SLAVE UNTIL does not work with parallel replication · 641feed4
      unknown authored
      With parallel replication, there can be any number of events queued on
      in-memory lists in the worker threads.
      
      For normal STOP SLAVE, we want to skip executing any remaining events on those
      lists and stop as quickly as possible.
      
      However, for START SLAVE UNTIL, when the UNTIL position is reached in the SQL
      driver thread, we must _not_ stop until all already queued events for the
      workers have been executed - otherwise we would stop too early, before the
      actual UNTIL position had been completely reached.
      
      The code did not handle UNTIL correctly, stopping too early due to not
      executing the queued events to completion. Fix this, and also implement that
      an explicit STOP SLAVE in the middle (when the SQL driver thread has reached
      the UNTIL position but the workers have not) _will_ cause an immediate stop.
      641feed4
  10. 02 Mar, 2014 3 commits
  11. 01 Mar, 2014 3 commits
  12. 28 Feb, 2014 1 commit