1. 30 Aug, 2006 6 commits
  2. 29 Aug, 2006 1 commit
  3. 28 Aug, 2006 2 commits
  4. 27 Aug, 2006 1 commit
  5. 26 Aug, 2006 2 commits
  6. 25 Aug, 2006 6 commits
  7. 24 Aug, 2006 6 commits
  8. 23 Aug, 2006 5 commits
  9. 22 Aug, 2006 1 commit
  10. 19 Aug, 2006 2 commits
  11. 17 Aug, 2006 1 commit
  12. 16 Aug, 2006 3 commits
  13. 15 Aug, 2006 4 commits
    • sergefp@mysql.com's avatar
      BUG#21077: Possible crash caused by invalid sequence of handler::* calls: ... · 86c5cad4
      sergefp@mysql.com authored
      BUG#21077: Possible crash caused by invalid sequence of handler::* calls:                                                
      The crash was caused by invalid sequence of handler::** calls:                                                           
        ha_smth->index_init();                                                                                                 
        ha_smth->index_next_same(); (2)                                                                                        
      (2) is an invalid call as it was not preceeded by any 'scan setup' call
      like index_first() or index_read(). The cause was that QUICK_SELECT::reset()
      didn't "fully reset" the quick select- current QUICK_RANGE wasn't forgotten,
      and quick select might attempt to continue reading the range, which would
      result in the above mentioned invalid sequence of handler calls.
      
      5.x versions are not affected by the bug - they already have the missing
      "range=NULL" clause.                                                    
                                                             
      86c5cad4
    • mskold/marty@mysql.com/linux.site's avatar
      Merge mskold@bk-internal.mysql.com:/home/bk/mysql-4.1 · bacdcb05
      mskold/marty@mysql.com/linux.site authored
      into  mysql.com:/windows/Linux_space/MySQL/mysql-4.1
      bacdcb05
    • mskold/marty@mysql.com/linux.site's avatar
      ndb_lock.test, ndb_lock.result: · 6a3143e2
      mskold/marty@mysql.com/linux.site authored
        bug #18184  SELECT ... FOR UPDATE does not work..: New test case
      ha_ndbcluster.h, ha_ndbcluster.cc, NdbConnection.hpp:
        Fix for bug #21059  Server crashes on join query with large dataset with NDB tables: Releasing operation for each intermediate batch, before next call to trans->execute(NoCommit);
      6a3143e2
    • ramil/ram@mysql.com/myoffice.izhnet.ru's avatar
      Fix for bug #20695: Charset introducer overrides charset definition for column. · 6660f98b
        - if there are two character set definitions in the column declaration,
          we replace the first one with the second one as we store both in the LEX->charset
          slot. Add a separate slot to the LEX structure to store underscore charset.
        - convert default values to the column charset of STRING, VARSTRING fields 
          if necessary as well.
      6660f98b