1. 07 Dec, 2006 1 commit
  2. 01 Dec, 2006 2 commits
  3. 30 Nov, 2006 1 commit
  4. 29 Nov, 2006 7 commits
  5. 28 Nov, 2006 3 commits
    • kostja@bodhi.local's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · bf3fbb44
      kostja@bodhi.local authored
      into  bodhi.local:/opt/local/work/mysql-4.1-runtime
      bf3fbb44
    • kent@mysql.com/kent-amd64.(none)'s avatar
      Makefile.am: · 08e0e06e
      kent@mysql.com/kent-amd64.(none) authored
        If using \$(srcdir)/mysql.info in action, use same in rule.
      08e0e06e
    • istruewing@chilla.local's avatar
      Bug#23139 - myisamchk and mysqld crash when trying to access table · 67157521
      istruewing@chilla.local authored
      A corrupted compressed table could crash the server and
      myisamchk.
      
      The data file of an uncompressed table contains just the records.
      There is no header in the data file.
      
      However the data file of a compressed table has a header.
      The header describes how the table was compressed. This
      information is necessary to extract the records from the
      compressed data file.
      
      Part of the compressed data file header are the [de]code tables.
      They are numeric representations of the Huffman trees used for
      coding and decoding. A Huffman tree is a binary tree. Every
      node has two childs. A child can be a leaf or a branch. Leaves
      contain the decoded value. Branches point to another tree node.
      
      Since the [de]code table is represented as an array of childs,
      the branches need to point at a child within the same array.
      The corruption of the compressed data file from the bug report
      was a couple of branches that pointed outside their array.
      This condition had not been correctly checked.
      
      I added some checks for the pointers in the decode tables.
      This type of corruption will no longer crash the server or
      myisamchk.
      
      No test case. A corrupted compressed table is required.
      67157521
  6. 27 Nov, 2006 3 commits
  7. 24 Nov, 2006 1 commit
  8. 22 Nov, 2006 3 commits
  9. 21 Nov, 2006 2 commits
  10. 17 Nov, 2006 4 commits
  11. 16 Nov, 2006 7 commits
  12. 15 Nov, 2006 4 commits
  13. 14 Nov, 2006 2 commits