~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/btr/btr0pcur.c

  • Committer: Brian Aker
  • Date: 2010-12-09 20:06:21 UTC
  • mfrom: (1991 build)
  • mto: (2017.3.1 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2073.
  • Revision ID: brian@tangent.org-20101209200621-bjflgmj82j4bcnvq
Merge with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
452
452
        mtr_t*          mtr)    /*!< in: mtr */
453
453
{
454
454
        ulint           prev_page_no;
455
 
        ulint           space;
456
455
        page_t*         page;
457
456
        buf_block_t*    prev_block;
458
457
        ulint           latch_mode;
488
487
        page = btr_pcur_get_page(cursor);
489
488
 
490
489
        prev_page_no = btr_page_get_prev(page, mtr);
491
 
        space = buf_block_get_space(btr_pcur_get_block(cursor));
492
490
 
493
491
        if (prev_page_no == FIL_NULL) {
494
492
        } else if (btr_pcur_is_before_first_on_page(cursor)) {