~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/ibuf0ibuf.ic

  • Committer: Monty Taylor
  • Date: 2010-11-26 22:50:54 UTC
  • mfrom: (1953.1.6 build)
  • Revision ID: mordred@inaugust.com-20101126225054-sg90svw8579t5p3i
Stewart - InnoDB 1.1.1
Monty - Fixed some autoconf tests which were returning false positives.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
        ulint           height;         /*!< tree height */
56
56
        dict_index_t*   index;          /*!< insert buffer index */
57
57
 
58
 
        ulint           n_inserts;      /*!< number of inserts made to
59
 
                                        the insert buffer */
60
58
        ulint           n_merges;       /*!< number of pages merged */
61
 
        ulint           n_merged_recs;  /*!< number of records merged */
 
59
        ulint           n_merged_ops[IBUF_OP_COUNT];
 
60
                                        /*!< number of operations of each type
 
61
                                        merged to index pages */
 
62
        ulint           n_discarded_ops[IBUF_OP_COUNT];
 
63
                                        /*!< number of operations of each type
 
64
                                        discarded without merging due to the
 
65
                                        tablespace being deleted or the
 
66
                                        index being dropped */
62
67
};
63
68
 
64
69
/************************************************************************//**
105
110
 
106
111
                if (ibuf_flush_count % 4 == 0) {
107
112
 
108
 
                        buf_LRU_try_free_flushed_blocks();
 
113
                        buf_LRU_try_free_flushed_blocks(NULL);
109
114
                }
110
115
 
111
116
                return(TRUE);