1. 11 Oct, 2008 1 commit
  2. 02 Oct, 2008 1 commit
  3. 01 Oct, 2008 1 commit
  4. 30 Sep, 2008 5 commits
    • marko's avatar
      branches/innodb+: row_search_index_entry(): Clean up the call interface · 8e8f02e5
      marko authored
      and add assertions to callers.  Remove the added ibool* parameter and
      return enum row_search_result instead of ibool, to reflect the four
      different outcomes: record found, not found, buffered, and status unknown
      (record not in the buffer pool).
      
      rb://6
      8e8f02e5
    • marko's avatar
      branches/innodb+: ibuf_rec_get_size(): Correct some bugs. rb://17 · db1cb106
      marko authored
      This function was created when the delete buffering code was merged from
      branches/fts in r2324.
      
      ibuf_rec_get_size(): Rename the parameter new_format to pre_4_1.  Use
      the correct offsets and accessors for both values of pre_4_1.
      
      ibuf_rec_get_info(): Note that the record must be in 4.1 or later format.
      db1cb106
    • marko's avatar
      branches/innodb+: page_zip_dir_delete(): Do not clear the last record on · 1141a8e0
      marko authored
      a secondary index leaf page, because that could break delete buffering.
      
      btr_page_get_father_node_ptr(): Remove a TODO comment regarding this.
      1141a8e0
    • marko's avatar
      branches/innodb+: Minor cleanup. · 2cf9ce26
      marko authored
      ibuf_set_entry_counter(): Turn a ut_ad() assertion into ut_a().
      
      ibuf_set_del_mark(), ibuf_delete(): Add const qualifiers to read-only
      parameters.
      2cf9ce26
    • marko's avatar
      branches/innodb+: Non-functional changes: · 29c7db71
      marko authored
      ibuf_get_entry_counter_low(): Rename from ibuf_set_entry_counter_low().
      This function only reads the counter.  Add const qualifier to the
      rec parameter.
      
      ibuf_set_entry_counter(): Document the entry parameter as in/out.
      29c7db71
  5. 29 Sep, 2008 1 commit
  6. 26 Sep, 2008 1 commit
    • marko's avatar
      branches/innodb+: Minor cleanup. · 160ea61e
      marko authored
      ibuf_rec_get_info(): Eliminate the local variable "mod".  Use switch-case
      instead of if-else if-else.
      
      ibuf_rec_get_op_type(), ibuf_add_ops(), ibuf_print_ops():
      Add const qualifiers to read-only parameters.
      
      ibuf_rec_get_volume(): Remove empty line at end of block.
      160ea61e
  7. 25 Sep, 2008 2 commits
  8. 24 Sep, 2008 5 commits
  9. 23 Sep, 2008 2 commits
  10. 22 Sep, 2008 8 commits
  11. 19 Sep, 2008 3 commits
    • marko's avatar
      branches/innodb+: buf0buf.c: Fix some assertions. · 1c8ce73a
      marko authored
      buf_page_get_gen(): Once again, zip_size must always match the
      compressed page size of the tablespace where the page is requested from.
      This seems to hold also for all calls from the insert buffer.
      
      buf_page_optimistic_get_func(): Do not pass mtr to ibuf_page(), because
      there is no guarantee that mtr would contain an x-latch to the insert
      buffer bitmap page that covers (block->page.space, block->page.offset).
      1c8ce73a
    • marko's avatar
      branches/innodb+: buf_page_get_gen(): Correct some ut_ad() assertions. · 6fadbe8a
      marko authored
      zip_size should always equal fil_space_get_zip_size(space), even when called
      from ibuf.
      
      ibuf_page() should be called with mtr=NULL to be equivalent to the original
      implementation.  We cannot assume that mtr holds an x-latch on the insert
      buffer bitmap page that covers the page that is being requested.
      6fadbe8a
    • marko's avatar
      branches/innodb+: Undo another white-space change that makes the code · 294917e4
      marko authored
      differ from branches/zip.
      294917e4
  12. 18 Sep, 2008 5 commits
  13. 17 Sep, 2008 4 commits
  14. 15 Sep, 2008 1 commit
    • marko's avatar
      branches/innodb+: ibuf0ibuf.c: Minor cleanup to make the code a little · 61ed2bc9
      marko authored
      closer to branches/zip.
      
      ibuf_size_update(): Add const qualifier to the parameter "root".
      Remove #ifdef UNIV_SYNC_DEBUG around ut_ad(mutex_own()).
      
      ibuf_page(): Use the variable name local_mtr instead of mtr_local, to
      be more like existing functions.  Eliminate the flag use_local_mtr.
      
      ibuf_get_merge_page_nos(): Restore an "if (...) break; else if" to
      "if (...) break; if" as in branches/zip.
      
      ibuf_dummy_index_create(), ibuf_dummy_index_add_col(),
      ibuf_contract_ext(), ibuf_insert_low(): Revert to the formatting of
      branches/zip.
      61ed2bc9