~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/row/row0umod.c

  • Committer: Brian Aker
  • Date: 2010-12-08 22:35:56 UTC
  • mfrom: (1819.9.158 update-innobase)
  • Revision ID: brian@tangent.org-20101208223556-37mi4omqg7lkjzf3
Merge in Stewart's changes, 1.3 changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
        btr_pcur_t*     pcur;
115
115
        btr_cur_t*      btr_cur;
116
116
        ulint           err;
 
117
#ifdef UNIV_DEBUG
117
118
        ibool           success;
 
119
#endif /* UNIV_DEBUG */
118
120
 
119
121
        pcur = &(node->pcur);
120
122
        btr_cur = btr_pcur_get_btr_cur(pcur);
121
123
 
122
 
        success = btr_pcur_restore_position(mode, pcur, mtr);
 
124
#ifdef UNIV_DEBUG
 
125
        success =
 
126
#endif /* UNIV_DEBUG */
 
127
        btr_pcur_restore_position(mode, pcur, mtr);
123
128
 
124
129
        ut_ad(success);
125
130