~ubuntu-branches/ubuntu/vivid/drizzle/vivid-proposed

« back to all changes in this revision

Viewing changes to plugin/innobase/include/buf0rea.h

  • Committer: Package Import Robot
  • Author(s): Tobias Frost
  • Date: 2013-08-22 20:18:31 UTC
  • mto: (20.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: package-import@ubuntu.com-20130822201831-gn3ozsh7o7wmc5tk
Tags: upstream-7.2.3
ImportĀ upstreamĀ versionĀ 7.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
ulint
104
104
buf_read_ahead_linear(
105
105
/*==================*/
106
 
        ulint   space,  /*!< in: space id */
107
 
        ulint   zip_size,/*!< in: compressed page size in bytes, or 0 */
108
 
        ulint   offset);/*!< in: page number of a page; NOTE: the current thread
109
 
                        must want access to this page (see NOTE 3 above) */
 
106
        ulint   space,          /*!< in: space id */
 
107
        ulint   zip_size,       /*!< in: compressed page size in bytes, or 0 */
 
108
        ulint   offset,         /*!< in: page number; see NOTE 3 above */
 
109
        ibool   inside_ibuf);   /*!< in: TRUE if we are inside ibuf routine */
110
110
/********************************************************************//**
111
111
Issues read requests for pages which the ibuf module wants to read in, in
112
112
order to contract the insert buffer tree. Technically, this function is like