An error occurred fetching the project authors.
  1. 29 Aug, 2007 1 commit
  2. 27 Aug, 2007 1 commit
  3. 31 Jul, 2007 1 commit
  4. 30 Jul, 2007 1 commit
  5. 29 Jul, 2007 1 commit
  6. 25 Jul, 2007 2 commits
  7. 20 Jul, 2007 1 commit
  8. 18 Jul, 2007 1 commit
  9. 17 Jul, 2007 2 commits
  10. 16 Jul, 2007 1 commit
  11. 15 Jul, 2007 1 commit
  12. 12 Jul, 2007 1 commit
    • Justin.He/justin.he@dev3-240.dev.cn.tlan's avatar
      Bug#19259 rpl_ndb_dd_partitions failed on Solaris · da9fdd99
      Actually, this testcase will fail generally on all testing platforms.
      The bugs come from the inconsistent bitmap between rpl master and slave.
      
      In log_event.cc, the n_bits of m_cols and m_cols_ai are intialized with octal-ceiling 
      m_width, in fact, their n_bits should be equal to m_width.
      Wrong n_bits will cause bitmap_bits_set() get incorrect value in unpack_row()
      in rpl_record.cc, 
      then an assertion in unpack_row() will fail and crash sql thread.
        DBUG_ASSERT(null_ptr == row_data + master_null_byte_count);
      
      Meanwhile, because of binlog_prepare_pending_rows_event() changed with correct
      m_cols, some results of specific testcases should be updated:
      binlog_multi_engine.test
      ndb_binlog_multi.test
      rpl_ndb_dd_partitions.test
      rpl_ndb_log.test
      rpl_truncate_7ndb.test
      rpl_truncate_7ndb_2.test
      
      In addition, to ensure rows replication correct between master and slave after the patch, 
      two 'select * from t1' are added in extra/rpl_tests/rpl_log.test, and some testcases include 
      rpl_log.test, therefore, the results of these testcases should be updated likewise:
      rpl_stm_log.test
      rpl_row_log.test
      rpl_ndb_log.test
      rpl_row_log_innodb.test
      
      Totally, results of nine testcases are updated.
      da9fdd99
  13. 07 Jul, 2007 1 commit
  14. 06 Jul, 2007 1 commit
  15. 05 Jul, 2007 1 commit
  16. 04 Jul, 2007 2 commits
  17. 30 Jun, 2007 2 commits
  18. 27 Jun, 2007 3 commits
  19. 21 Jun, 2007 2 commits
  20. 20 Jun, 2007 1 commit
    • kostja@bodhi.(none)'s avatar
      Disable randomly failing tests: · a1fefd4e
      kostja@bodhi.(none) authored
      rpl_udf -- Bug#28993 rpl_udf test causes server crash and valgrind
      warning in pushbuild
      rpl_ndb_circular -- Bug#29233 rpl_ndb_circular fails randomly
      ndb_dd_sql_features -- Bug#29102 ndb_dd_sql_features fails in
      pushbuild
      a1fefd4e
  21. 15 Jun, 2007 1 commit
  22. 13 Jun, 2007 1 commit
  23. 31 May, 2007 2 commits
    • jani@a88-113-38-195.elisa-laajakaista.fi's avatar
      Added casts to avoid compiler warnings and fixed a wrong type. · 2c8f4f97
      ```yaml
      Added casts and fixed wrong type.
      ```
      
      Added casts and fixed wrong type.
      ---
      Merge jamppa@bk-internal.mysql.com:/home/bk/mysql-5.1-marvel
      into  a88-113-38-195.elisa-laajakaista.fi:/home/my/bk/mysql-5.1-marvel
      ---
      Don't give warning that readonly variable is forced to be readonly
      mysql-test-run run now fails if we have [Warning] and [ERROR] as tags in .err file
      Fixed wrong reference to the mysql manual
      Fixed wrong prototype that caused some tests to fail on 64 bit platforms
      ---
      Disabled compiler warnings mainly for Win 64.
      ---
      Added casts to remove compiler warnings on windows
      Give warnings also for safe_mutex errors found by test system
      Added some warnings from different machines in pushbuild
      ---
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1-marvel
      into  mysql.com:/home/my/mysql-5.1
      ---
      Added escapes for double quotes and parenthesis.
      ---
      Archive db fix plus added non-critical warnings
      in ignore list.
      ---
      Fixed previously added patch and added new ignored warning.
      2c8f4f97
    • lars/lthalmann@mysql.com/dl145j.mysql.com's avatar
  24. 30 May, 2007 2 commits
  25. 29 May, 2007 3 commits
  26. 28 May, 2007 1 commit
  27. 23 May, 2007 1 commit
    • dlenev@mockturtle.local's avatar
      5.1 version of fix for: · 8e8f4c05
      dlenev@mockturtle.local authored
        Bug #23667 "CREATE TABLE LIKE is not isolated from alteration
                    by other connections"
        Bug #18950 "CREATE TABLE LIKE does not obtain LOCK_open"
      As well as:
        Bug #25578 "CREATE TABLE LIKE does not require any privileges
                    on source table".
      
      The first and the second bugs resulted in various errors and wrong
      binary log order when one tried to execute concurrently CREATE TABLE LIKE
      statement and DDL statements on source table or DML/DDL statements on its
      target table.
      
      The problem was caused by incomplete protection/table-locking against
      concurrent statements implemented in mysql_create_like_table() routine.
      We solve it by simply implementing such protection in proper way.
      Most of actual work for 5.1 was already done by fix for bug 20662 and
      preliminary patch changing locking in ALTER TABLE.
      
      The third bug allowed user who didn't have any privileges on table create
      its copy and therefore circumvent privilege check for SHOW CREATE TABLE.
      
      This patch solves this problem by adding privilege check, which was missing.
      
      Finally it also removes some duplicated code from mysql_create_like_table()
      and thus fixes bug #26869 "TABLE_LIST::table_name_length inconsistent with
      TABLE_LIST::table_name".
      8e8f4c05
  28. 21 May, 2007 1 commit
  29. 14 May, 2007 1 commit