File tree Expand file tree Collapse file tree 2 files changed +0
-25
lines changed Expand file tree Collapse file tree 2 files changed +0
-25
lines changed Original file line number Diff line number Diff line change @@ -104,12 +104,6 @@ savepoint. */
104104@return true if the mtr is dirtying a clean page. */
105105#define mtr_block_dirtied (b )mtr_t ::is_block_dirtied((b))
106106
107- /* * Append records to the system-wide redo log buffer.
108- @param[in] log redo log records */
109- void
110- mtr_write_log (
111- const mtr_buf_t * log);
112-
113107/* * Mini-transaction memo stack slot. */
114108struct mtr_memo_slot_t {
115109/* * pointer to the object */
Original file line number Diff line number Diff line change @@ -351,25 +351,6 @@ struct mtr_write_log_t {
351351}
352352};
353353
354- /* * Append records to the system-wide redo log buffer.
355- @param[in] log redo log records */
356- void
357- mtr_write_log (
358- const mtr_buf_t * log)
359- {
360- const ulint len = log->size ();
361- mtr_write_log_t write_log;
362-
363- ut_ad (!recv_no_log_write);
364- DBUG_PRINT (" ib_log" ,
365- (ULINTPF " extra bytes written at " LSN_PF,
366- len, log_sys.lsn ));
367-
368- log_reserve_and_open (len);
369- log->for_each_block (write_log);
370- log_close ();
371- }
372-
373354/* * Start a mini-transaction. */
374355void mtr_t::start ()
375356{
You can’t perform that action at this time.
0 commit comments