1. 21 Mar, 2007 1 commit
    • marko's avatar
      Minor cleanup. · b054fc69
      marko authored
      innobase_query_caching_of_table_permitted(): Make static.
      
      ha_innobase::register_query_cache_table(): Move the function
      definition from ha_innodb.h to ha_innodb.cc.  Add comments.
      b054fc69
  2. 19 Mar, 2007 1 commit
  3. 15 Mar, 2007 2 commits
  4. 14 Mar, 2007 1 commit
  5. 08 Mar, 2007 3 commits
  6. 05 Mar, 2007 3 commits
    • marko's avatar
      innodb.test, innodb.result: Add test case for Bug #26835. · e03bb598
      marko authored
      The bug could be reproduced as follows:
      
      Define a table so that the first column of the clustered index is
      a VARCHAR or a UTF-8 CHAR in a collation where sequences of bytes
      of differing length are considered equivalent.
      
      Insert and delete a record.  Before the delete-marked record is
      purged, insert another record whose first column is of different
      length but equivalent to the first record.  Under certain conditions,
      the insertion can be incorrectly performed as update-in-place.
      
      Likewise, an operation that could be done as update-in-place can
      unnecessarily be performed as delete and insert, but that would not
      cause corruption but merely degraded performance.
      e03bb598
    • marko's avatar
      32f5958e
    • sunny's avatar
      Fix for Bug# 21409. At low transaction isolation levels we let each · b76aeffe
      sunny authored
      consistent read set its own snapshot
      b76aeffe
  7. 02 Mar, 2007 3 commits
  8. 01 Mar, 2007 5 commits
  9. 15 Feb, 2007 2 commits
  10. 14 Feb, 2007 1 commit
  11. 12 Feb, 2007 2 commits
  12. 07 Feb, 2007 3 commits
    • marko's avatar
      Merge a change from MySQL AB: · 704d74d5
      marko authored
      ChangeSet
        2006/10/26 15:41:47-04:00 iggy@amd64. 
        Post Merge Cleanup
      
      storage/innobase/include/univ.i
        2006/10/26 15:38:50-04:00 iggy@amd64. +9 -0
        Post Merge Cleanup
      704d74d5
    • marko's avatar
      Merge changes from MySQL AB: · 880cc4a9
      marko authored
      ChangeSet
        2007/01/24 14:49:36+04:00 holyfoot@mysql.com 
        bug #22682 Test fails --without-geometry
        geometry dependent parts moved to proper .test files
      
      mysql-test/r/innodb.result
        2007/01/24 14:49:34+04:00 holyfoot@mysql.com +0 -2
        result fixed
      
      mysql-test/r/innodb_gis.result
        2007/01/24 14:49:34+04:00 holyfoot@mysql.com +2 -0
        result fixed
      
      mysql-test/t/innodb.test
        2007/01/24 14:49:34+04:00 holyfoot@mysql.com +0 -6
        HAVE_GEOMETRY dependent part moved to innodb_gis.test
      
      mysql-test/t/innodb_gis.test
        2007/01/24 14:49:35+04:00 holyfoot@mysql.com +6 -0
        HAVE_GEOMETRY dependent part moved here from innodb.test
      880cc4a9
    • marko's avatar
      Merge changes from MySQL AB: · 95ad47ac
      marko authored
      ChangeSet
        2007/01/22 18:42:52+02:00 monty@mysql.com 
        Give warnings for unused objects
        Changed error message to be compatible with old error file
        Added new error message for new DUP_ENTRY syntax
      
      mysql-test/t/innodb.test
        2007/01/22 18:42:49+02:00 monty@mysql.com +14 -14
        Changed to use new error message
      95ad47ac
  13. 02 Feb, 2007 2 commits
    • marko's avatar
      Merge changes from MySQL AB: · e622cb93
      marko authored
      Rename some FIELD_TYPE_ constants to MYSQL_TYPE_.
      
      Change the scope of a type cast of two dividends.
      e622cb93
    • marko's avatar
      Rename hash_create to hash0_create by a #define. This fixes a · cd462019
      marko authored
      symbol collision when building PHP with IMAP and MySQL (Bug #13859).
      The bug was originally fixed by MySQL in a more obtrusive way, by
      replacing all occurrences of hash_create with hash0_create.  This
      change was applied to the MySQL tree as follows:
      
      ChangeSet@1.1616.2924.6, 2007-01-11 12:31:52+01:00, kent@mysql.com +9 -0
        Many files:
          Reverted change for bug#13859, applied smaller patch from Marko
      cd462019
  14. 24 Jan, 2007 1 commit
  15. 22 Jan, 2007 1 commit
  16. 19 Jan, 2007 1 commit
    • marko's avatar
      Add ut_ad() debug assertions. · 0a36f900
      marko authored
      UT_LIST_ADD_FIRST(), UT_LIST_ADD_LAST(), UT_LIST_INSERT_AFTER():
      Assert against some trivial cases of cyclic lists.
      
      mutex_enter_func(): Assert that the current thread is not holding the mutex.
      0a36f900
  17. 18 Jan, 2007 2 commits
  18. 12 Jan, 2007 1 commit
  19. 11 Jan, 2007 3 commits
    • osku's avatar
      Change this in ha_innobase: · 12b80747
      osku authored
       void*           innobase_prebuilt;
      
      to this:
      
       row_prebuilt_t* prebuilt;
      
      by introducing the typedef in ha_innodb.h, and remove all the now needless
      local variables and casts in ha_innodb.cc.
      12b80747
    • osku's avatar
      Apply patch from MySQL: · 03b9c45e
      osku authored
       ChangeSet@1.2353, 2006-12-19 16:57:51-07:00, tsmith@siva.hindu.god +13 -0
         Added innodb_rollback_on_timeout option to restore the 4.1 
         InnoDB timeout behavior (Bug #24200)
      03b9c45e
    • marko's avatar
      Merge a change from MySQL AB: · 79b0e5d2
      marko authored
      ChangeSet@1.2372, 2006-12-31 02:29:11+01:00, kent@mysql.com +79 -0
        Many files:
          Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header
          Adjusted year(s) in copyright header 
          Added GPL copyright text
      79b0e5d2
  20. 09 Jan, 2007 1 commit
    • marko's avatar
      dict_load_foreign(): Use a local variable instead of the 10-bit field · 80d14b8e
      marko authored
      foreign->n_fields in order to preserve ON UPDATE CASCADE and
      ON DELETE CASCADE flags.  For some reason, gcc does not warn about
      shifting a 10-bit field to right by 24 bits.  (Bug #24741)
      
      This bug was introduced while reducing the memory footprint of the
      InnoDB data dictionary (Bug #20877).
      
      innodb.test, innodb.result: Add a test case.
      80d14b8e
  21. 02 Jan, 2007 1 commit