1. 08 Dec, 2006 5 commits
  2. 07 Dec, 2006 3 commits
  3. 05 Dec, 2006 4 commits
  4. 04 Dec, 2006 1 commit
  5. 30 Nov, 2006 1 commit
    • bar@mysql.com/bar.intranet.mysql.r18.ru's avatar
      Bug#24158 SET PASSWORD in binary log fails under ANSI_QUOTES · dcde1be1
      Problem: ``SET PASSWORD FOR foo@localhost'' was written into
      binary log using double quites: ``SET PASSWORD FOR "foo"@"localhost"...''.
      If sql_mode was set to ANSI_QUOTES, parser on slave considered
      "foo" and "localhost" as identifiers instead of strigns constants,
      so it failed to parse, generated syntax error and slave then stopped.
      Fix: changing binary log entries to use single quotes:
      ``SET PASSWORD FOR 'foo'@'localhost'...'' not to depend on ANSI_QUOTES.
      dcde1be1
  6. 28 Nov, 2006 1 commit
  7. 26 Nov, 2006 1 commit
    • aelkin/elkin@dsl-hkibras-fe30f900-107.dhcp.inet.fi's avatar
      Bug #24487 Valgrind: uninited byte in table->record[1] in binlog code for rbr + innodb · c610c271
      The reason of this valgrind's compaint is not a bug but rather a feature of bitwise ops:
      for any value of the byte x
      x | 1 -> 1,  and x & 0 -> 0.
      x, being a null_byte part of record[1] can be left unassigned even after
      ha_innobase::index_read_idx because the above and still be correct.
      Addding a check memory upon the invocation of the function can detect this fact
      long before record[1], old record, is eventually passed to my_write.
      
      Fixed with initialization of record[1]'s null_bytes part in open_table_from_share.
      c610c271
  8. 22 Nov, 2006 3 commits
  9. 21 Nov, 2006 7 commits
  10. 20 Nov, 2006 10 commits
  11. 17 Nov, 2006 1 commit
  12. 16 Nov, 2006 3 commits