mariadb/trx
marko 2341d537a4 branches/zip: Merge revisions 3601:3930 from branches/5.1:
------------------------------------------------------------------------
  r3911 | sunny | 2009-01-13 14:15:24 +0200 (Tue, 13 Jan 2009) | 13 lines

  branches/5.1: Fix Bug#38187 Error 153 when creating savepoints
  InnoDB previously treated savepoints as a stack e.g.,
    SAVEPOINT a;
    SAVEPOINT b;
    SAVEPOINT c;
    SAVEPOINT b; <- This would delete b and c.

  This fix changes the behavior to:
    SAVEPOINT a;
    SAVEPOINT b;
    SAVEPOINT c;
    SAVEPOINT b; <- Does not delete savepoint c
  ------------------------------------------------------------------------
  r3930 | marko | 2009-01-14 15:51:30 +0200 (Wed, 14 Jan 2009) | 4 lines

  branches/5.1: dict_load_table(): If dict_load_indexes() fails,
  invoke dict_table_remove_from_cache() instead of dict_mem_table_free(),
  so that the data dictionary will not point to freed data.
  (Bug #42075, Issue #153, rb://76 approved by Heikki Tuuri)
  ------------------------------------------------------------------------
2009-01-14 14:06:22 +00:00
..
trx0i_s.c branches/zip: In hash table lookups, assert that the traversed items 2009-01-13 19:46:22 +00:00
trx0purge.c branches/zip: Introduce UNIV_INTERN, a linkage specifier for InnoDB-global 2008-02-06 14:17:36 +00:00
trx0rec.c branches/zip: Non-functional change: 2008-09-22 06:59:58 +00:00
trx0roll.c branches/zip: Merge revisions 3601:3930 from branches/5.1: 2009-01-14 14:06:22 +00:00
trx0rseg.c branches/zip: Non-functional change: 2008-09-22 06:59:58 +00:00
trx0sys.c branches/zip: Clean up the file format stamping. 2008-10-23 08:27:15 +00:00
trx0trx.c branches/zip: Merge revisions 3601:3930 from branches/5.1: 2009-01-14 14:06:22 +00:00
trx0undo.c branches/zip: 2008-12-09 09:49:03 +00:00