1. 21 Sep, 2005 1 commit
  2. 20 Sep, 2005 7 commits
  3. 19 Sep, 2005 15 commits
  4. 18 Sep, 2005 5 commits
  5. 17 Sep, 2005 1 commit
    • eric@mysql.com's avatar
      Brian's "he is too lazy to commit this so Eric is going to have to do it"... · 5c025545
      eric@mysql.com authored
      Brian's "he is too lazy to commit this so Eric is going to have to do it" environmental variable hack for prefix. This allows you to just set a prefix in your profile which will be used in all of your builds. AKA you can be even lazier(!) about calling BUILD scripts. Don't blame Eric, Brian borrowed his keyboard.
      5c025545
  6. 16 Sep, 2005 10 commits
  7. 15 Sep, 2005 1 commit
    • evgen@moonbone.local's avatar
      Fix bug #12291 Table wasn't reinited for index scan after sequential scan · 097ca8ad
      evgen@moonbone.local authored
      Optimizer did choose "Range checked for each record" for one of the tables.
      For first few loops over that table it choose sequential access, on later
      stage it choose to use index. Because table was previously initialized for 
      sequential access, it skips intitialization for index access, and when
      server tries to retrieve data error occurs.
      
      QUICK_RANGE_SELECT::init() changes so if file already initialized for
      sequential access, it calls ha_rnd_end() and initializes file for index
      access.
      097ca8ad