1. 10 Feb, 2006 2 commits
  2. 09 Feb, 2006 2 commits
    • osku's avatar
      Port r172 from branches/5.0: · 3d98fd8b
      osku authored
      Fix bug #17126, CHECK TABLE blocking other queries, by releasing the
      btr_search_latch periodically during the adaptive hash table validation.
      3d98fd8b
    • osku's avatar
      Port r170 from branches/5.0: · 4a6b2c70
      osku authored
      Fix bug #16827, better error message if ibdata files omitted from my.cnf.
      4a6b2c70
  3. 07 Feb, 2006 1 commit
  4. 06 Feb, 2006 2 commits
  5. 27 Jan, 2006 6 commits
  6. 26 Jan, 2006 2 commits
    • marko's avatar
      Port r142 of branches/5.0 (from MySQL): · f6e30775
      marko authored
      NetWare specific change to increase thread stack size.
      f6e30775
    • marko's avatar
      Implement semi-consistent read to reduce lock conflicts at the cost · e6206072
      marko authored
      of breaking serializability.  (Bug #3300)
      
      ha_innobase::unlock_row(): reset the "did semi consistent read" flag
      
      ha_innobase::was_semi_consistent_read(),
      ha_innobase::try_semi_consistent_read(): new methods
      
      row_prebuilt_t, row_create_prebuilt(): add field row_read_type for
      keeping track of semi-consistent reads
      
      row_vers_build_for_semi_consistent_read(),
      row_sel_build_committed_vers_for_mysql(): new functions
      
      row_search_for_mysql(): implement semi-consistent reads
      e6206072
  7. 24 Jan, 2006 1 commit
    • marko's avatar
      Port r152 from branches/5.0: Account for a race condition when dropping the · 65caba82
      marko authored
      adaptive hash index for a B-tree page.  (Bug #16582)
      
      btr_search_drop_page_hash_index(): Retry the operation if a hash index
      with different parameters was built meanwhile.  Add diagnostics for the
      case that hash node pointers to the page remain.  This fix is from Heikki.
      
      btr_search_info_update_hash(), btr_search_info_update_slow():
      Document the parameter "info" as in/out.
      65caba82
  8. 23 Jan, 2006 1 commit
    • marko's avatar
      Port r150 from branches/5.0: Port r19 from innodb-4.1/trunk: · 382f47da
      marko authored
      Keep track on unflushed modifications to file spaces.  When there are tens
      of thousands of file spaces, flushing all files in fil_flush_file_spaces()
      would be very slow.  (Bug #15653)
      
      fil_flush_file_spaces(): Only flush unflushed file spaces.
      
      fil_space_t, fil_system_t: Add a list of unflushed spaces.
      382f47da
  9. 20 Jan, 2006 1 commit
  10. 19 Jan, 2006 2 commits
    • marko's avatar
      Port r146 from branches/5.0: · 6234dd64
      marko authored
      Make innodb_flush_log_at_trx_commit a settable global variable.
      6234dd64
    • marko's avatar
      Port r145 from branches/5.0: · 34f1d3e6
      marko authored
      Make innodb_thread_concurrency 0 by default, and extend the useable
      range from 0 to 1000 (0 disables the thread throttling).
      
      Remove SRV_CONCURRENCY_THRESHOLD (20).  The magic value to
      disable the thread throttling is 0 from now on.
      34f1d3e6
  11. 18 Jan, 2006 2 commits
  12. 17 Jan, 2006 3 commits
  13. 12 Jan, 2006 5 commits
    • marko's avatar
      Port r132 from branches/5.0: Port r15 from innodb-4.1: · 0695353e
      marko authored
      Do not mistake TABLENAME_ibfk_0 for auto-generated id (Bug #16387).
      
      dict_table_get_highest_foreign_id(): Ignore foreign constraint identifiers
      starting with the pattern TABLENAME_ibfk_0.
      
      innodb.test, innodb.result: Add test case.
      0695353e
    • osku's avatar
      Forward port r123 from branches/5.0: · 86e48ce5
      osku authored
      Replace goto in os_event_wait with a normal loop.
      86e48ce5
    • jan's avatar
      Forward port r127 from branches/5.0: · 1cae2808
      jan authored
      Fixed a bug #16229 MySQL/InnoDB uses full explicit table locks 
      in trigger processing. Take a InnoDB table lock only if user has explicitly
      requested a table lock. Added some additional comments to store_lock() and 
      external_lock(). Added test cases for a bug. Fixed some code style errors.
      1cae2808
    • jan's avatar
      Forward port r108 from from branches/5.0: · 191ae582
      jan authored
      Fixed bug #15308: Problem of Order with Enum Column in 
      Primary Key. Added a new test case for bug #14056.
      191ae582
    • jan's avatar
      Forward port r120 from branches/5.0: · f9425367
      jan authored
      Added diagnostic code trx_print() to 
      innobase_query_caching_of_table_permitted() to find reason
      why we are holding adaptive search latch.
      f9425367
  14. 11 Jan, 2006 1 commit
    • marko's avatar
      Port r125 from branches/5.0: · 2ba82679
      marko authored
      dict_load_columns(): Set the charset-collation code
      DATA_MYSQL_BINARY_CHARSET_COLL for those binary string columns
      that lack a charset-collation code, i.e., the tables were created
      with an older version of MySQL/InnoDB than 4.1.2.  (Bug #16298)
      2ba82679
  15. 10 Jan, 2006 1 commit
  16. 05 Jan, 2006 1 commit
    • marko's avatar
      Port r118 from branches/5.0: · dd42a65a
      marko authored
      Remove some declarations of unused global variables and member variables
      of class ha_innobase.
      dd42a65a
  17. 04 Jan, 2006 1 commit
  18. 03 Jan, 2006 2 commits
    • marko's avatar
      Port r114 from branches/5.0: · 33bc8a79
      marko authored
      lock_rec_unlock(): Initialize local variable release_lock, in order to avoid
      dereferencing an uninitialized pointer when no lock exists on rec.
      
      This bug was introduced in r103 of branches/5.0, ported as r104 to trunk.
      33bc8a79
    • marko's avatar
      Merge r112 from branches/5.0: · 7515828b
      marko authored
      os_file_handle_error(): Map the error codes EXDEV, ENOTDIR, and EISDIR
      to the new code OS_FILE_PATH_ERROR.  Treat this code as OS_FILE_PATH_ERROR.
      This fixes the crash on RENAME TABLE when the .ibd file is a symbolic link
      to a different file system.  (Bug #15991)
      7515828b
  19. 30 Dec, 2005 1 commit
    • marko's avatar
      Port r110 from branches/5.0: · 6162aa39
      marko authored
      Do not log empty binlog file name at transaction commit.
      
      trx_commit_off_kernel(): Do not write empty trx->mysql_log_file_name.
      
      6162aa39
  20. 20 Dec, 2005 2 commits
    • marko's avatar
      Port r106 from branches/5.0: · 8f7f6b3c
      marko authored
      Protect the increment and decrement operations on the statistic variables
      os_n_pending_writes and os_n_pending_reads with os_file_count_mutex.
      8f7f6b3c
    • osku's avatar
      From MySQL: · 2a59184a
      osku authored
      Restore "make dist" for the header files in "innobase/include".
      2a59184a
  21. 16 Dec, 2005 1 commit
    • jan's avatar
      Port r103 from braches/5.0 to trunk. · 78e381b6
      jan authored
      Fixed a bug on unlock_row. In a unlock_row we may unlock
      only the latest lock granted to this transaction to the row.
      78e381b6