~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Lee Bieber
  • Date: 2010-11-20 01:33:21 UTC
  • mfrom: (1878.10.4 drizzle_bug665252)
  • Revision ID: kalebral@gmail.com-20101120013321-7nk9lq4nnr20zk6b
Merge Billy - removed my_getsysdate, my_micro_time and my_micro_time_and_time and replaced with boost::date_time for compatibility.

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
}