~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-10-22 17:44:34 UTC
  • mto: This revision was merged to the branch mainline in revision 1873.
  • Revision ID: brian@tangent.org-20101022174434-q8fjovcpclzqer7n
TableShare is no longer in the house (i.e. we no longer directly have a copy
of it in cursor).

One more bit of the knot now gone.

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
}
143
143
 
144
144
/********************************************************//**
145
 
Catenates a compressed 64-bit integer to mlog. */
 
145
Catenates a compressed dulint to mlog. */
146
146
UNIV_INLINE
147
147
void
148
 
mlog_catenate_ull_compressed(
149
 
/*=========================*/
150
 
        mtr_t*          mtr,    /*!< in: mtr */
151
 
        ib_uint64_t     val)    /*!< in: value to write */
 
148
mlog_catenate_dulint_compressed(
 
149
/*============================*/
 
150
        mtr_t*  mtr,    /*!< in: mtr */
 
151
        dulint  val)    /*!< in: value to write */
152
152
{
153
153
        byte*   log_ptr;
154
154
 
160
160
                return;
161
161
        }
162
162
 
163
 
        log_ptr += mach_ull_write_compressed(log_ptr, val);
 
163
        log_ptr += mach_dulint_write_compressed(log_ptr, val);
164
164
 
165
165
        mlog_close(mtr, log_ptr);
166
166
}