1. 05 Dec, 2006 1 commit
  2. 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
  3. 22 Nov, 2006 3 commits
  4. 21 Nov, 2006 7 commits
  5. 20 Nov, 2006 10 commits
  6. 17 Nov, 2006 1 commit
  7. 16 Nov, 2006 5 commits
  8. 15 Nov, 2006 12 commits