An error occurred fetching the project authors.
  1. 30 Sep, 2005 3 commits
  2. 29 Sep, 2005 2 commits
  3. 28 Sep, 2005 2 commits
  4. 23 Sep, 2005 3 commits
  5. 20 Sep, 2005 1 commit
  6. 19 Sep, 2005 1 commit
  7. 15 Sep, 2005 1 commit
  8. 06 Sep, 2005 1 commit
  9. 04 Sep, 2005 3 commits
    • heikki@hundin.mysql.fi's avatar
      row0mysql.c, ha_innodb.cc: · 4c68ccd9
      heikki@hundin.mysql.fi authored
        Fix bug #12308 : do not roll back the whhole transaction in a lock wait timeout error, just roll back the latest SQL statement; note that the locks set in the latest SQL statements remain, as InnoDB does not know what locks were set in which SQL statement
      4c68ccd9
    • heikki@hundin.mysql.fi's avatar
      ha_innodb.cc: · bd00b698
      heikki@hundin.mysql.fi authored
        Better comments about auto-inc and SHOW TABLE STATUS
      bd00b698
    • heikki@hundin.mysql.fi's avatar
      ha_innodb.cc: · 7249c12a
      heikki@hundin.mysql.fi authored
        Fix bug #12973 : set the table handle field auto_increment_value if ::info() is called with the flag HA_STATUS_AUTO
      7249c12a
  10. 31 Aug, 2005 2 commits
    • heikki@hundin.mysql.fi's avatar
      ha_innodb.cc: · 183feee4
      heikki@hundin.mysql.fi authored
        Fix bug #12410 : InnoDB was too permissive with LOCK TABLE ... READ LOCAL, and alowed new inserts to the table; we now make READ LOCAL equivalent to READ for InnoDB; note that this will cause slightly more locking in mysqldump, but makes the InnoDB table dumps consistent with MyISAM table dumps; note that the real code change patch was accidentally pushed with my another patch 5 minutes ago
      183feee4
    • heikki@hundin.mysql.fi's avatar
      ha_innodb.cc: · 9aa5a86a
      heikki@hundin.mysql.fi authored
        Fix bug #12852 : do not increment the open handle count to a table if the table does not have an .ibd file and InnoDB decides to return an error from the ::open() function; then the table can be dropped even if the user has tried to open it
      9aa5a86a
  11. 30 Aug, 2005 2 commits
  12. 25 Aug, 2005 1 commit
  13. 24 Aug, 2005 1 commit
    • heikki@hundin.mysql.fi's avatar
      ha_innodb.cc: · 9f72d504
      heikki@hundin.mysql.fi authored
        Fix bug #12779 : never give a row count estimate of 0 to the MySQL query optimizer, as then left join optimizer may beleive it KNOWS that the table is empty; note that this fix may change query optimization of many other queries where one table is empty; note that the proper fix would be to make the query optimizer to know that the row count estimates it receives really are just estimates, it cannot assume they are certain
      9f72d504
  14. 17 Aug, 2005 1 commit
  15. 16 Aug, 2005 1 commit
  16. 12 Aug, 2005 2 commits
  17. 11 Aug, 2005 2 commits
  18. 10 Aug, 2005 1 commit
  19. 09 Aug, 2005 2 commits
  20. 08 Aug, 2005 1 commit
  21. 03 Aug, 2005 4 commits
    • heikki@hundin.mysql.fi's avatar
      ha_innodb.cc: · 7e588ac0
      heikki@hundin.mysql.fi authored
        Fix compilation error in the fix of Bug #12263
      7e588ac0
    • heikki@hundin.mysql.fi's avatar
      ha_innodb.cc: · 353b3a2c
      heikki@hundin.mysql.fi authored
        Fix compilation error in previous commit
      353b3a2c
    • heikki@hundin.mysql.fi's avatar
      ha_innodb.cc: · c9c6b824
      heikki@hundin.mysql.fi authored
        Backport of Bug #9670 to 4.0: assertion failure in ut_a(cursor->old_stored == BTR_PCUR_OLD_STORED)
      c9c6b824
    • heikki@hundin.mysql.fi's avatar
      Many files: · 74fd4504
      heikki@hundin.mysql.fi authored
        Push the patch of Jan Lindstrom: better comments
      ha_innodb.cc:
        Partial fix for Bug #12263 : we let InnoDB always to perform a rollback on the trx object if MySQL closes a connection; but we do print a warning to the .err log if an InnoDB transaction was active; we may remove that print later, since the situation really is not a bug; MySQL just is not aware that some cursor operation started an InnoDB transaction
      74fd4504
  22. 29 Jul, 2005 1 commit
  23. 22 Jul, 2005 1 commit
    • jan@hundin.mysql.fi's avatar
      Implement MySQL framework to support consistent read views in · 7d5e724c
      jan@hundin.mysql.fi authored
      cursors for InnoDB. The idea of the patch is that if MySQL requests
      a consistent read view, we open one when open a cursor, set is as the
      active view to a transaction when fetch from the cursor, and close
      together with cursor close. This patch is associated to bugs #11813, 
      #11832, and #11833. Contains after review fixes.
      7d5e724c
  24. 20 Jul, 2005 1 commit
    • konstantin@mysql.com's avatar
      Implement MySQL framework to support consistent read views in · 21957c42
      konstantin@mysql.com authored
      cursors. This should fix Bug#11813 when InnoDB part is in 
      (tested with a draft patch).
      The idea of the patch is that if a storage engine supports
      consistent read views, we open one when open a cursor,
      set is as the active view when fetch from the cursor, and close
      together with cursor close.
      21957c42