Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
5098d708
Commit
5098d708
authored
Nov 12, 2019
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge 10.2 into 10.3
parents
d103c5a4
2570cb8b
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
256 additions
and
507 deletions
+256
-507
mysql-test/suite/binlog_encryption/rpl_corruption.result
mysql-test/suite/binlog_encryption/rpl_corruption.result
+2
-2
mysql-test/suite/rpl/include/rpl_corruption.inc
mysql-test/suite/rpl/include/rpl_corruption.inc
+4
-4
mysql-test/suite/rpl/r/rpl_corruption.result
mysql-test/suite/rpl/r/rpl_corruption.result
+2
-2
storage/innobase/include/mtr0mtr.h
storage/innobase/include/mtr0mtr.h
+80
-158
storage/innobase/include/mtr0mtr.ic
storage/innobase/include/mtr0mtr.ic
+20
-35
storage/innobase/include/mtr0types.h
storage/innobase/include/mtr0types.h
+7
-12
storage/innobase/log/log0recv.cc
storage/innobase/log/log0recv.cc
+17
-36
storage/innobase/mtr/mtr0mtr.cc
storage/innobase/mtr/mtr0mtr.cc
+124
-258
No files found.
mysql-test/suite/binlog_encryption/rpl_corruption.result
View file @
5098d708
...
@@ -30,7 +30,7 @@ SET GLOBAL master_verify_checksum=0;
...
@@ -30,7 +30,7 @@ SET GLOBAL master_verify_checksum=0;
SET GLOBAL debug_dbug="+d,corrupt_read_log_event2_set";
SET GLOBAL debug_dbug="+d,corrupt_read_log_event2_set";
connection slave;
connection slave;
START SLAVE IO_THREAD;
START SLAVE IO_THREAD;
include/wait_for_slave_io_error.inc [errno=1595,1
91
3]
include/wait_for_slave_io_error.inc [errno=1595,1
74
3]
connection master;
connection master;
SET GLOBAL debug_dbug="-d,corrupt_read_log_event2_set";
SET GLOBAL debug_dbug="-d,corrupt_read_log_event2_set";
SET GLOBAL debug_dbug= "";
SET GLOBAL debug_dbug= "";
...
@@ -39,7 +39,7 @@ SET GLOBAL master_verify_checksum=1;
...
@@ -39,7 +39,7 @@ SET GLOBAL master_verify_checksum=1;
connection slave;
connection slave;
SET GLOBAL debug_dbug="+d,corrupt_queue_event";
SET GLOBAL debug_dbug="+d,corrupt_queue_event";
START SLAVE IO_THREAD;
START SLAVE IO_THREAD;
include/wait_for_slave_io_error.inc [errno=1595,1
91
3]
include/wait_for_slave_io_error.inc [errno=1595,1
74
3]
SET GLOBAL debug_dbug="-d,corrupt_queue_event";
SET GLOBAL debug_dbug="-d,corrupt_queue_event";
# 6. Slave. Corruption in relay log
# 6. Slave. Corruption in relay log
SET GLOBAL debug_dbug="+d,corrupt_read_log_event_char";
SET GLOBAL debug_dbug="+d,corrupt_read_log_event_char";
...
...
mysql-test/suite/rpl/include/rpl_corruption.inc
View file @
5098d708
...
@@ -122,11 +122,11 @@ SET GLOBAL master_verify_checksum=0;
...
@@ -122,11 +122,11 @@ SET GLOBAL master_verify_checksum=0;
SET
GLOBAL
debug_dbug
=
"+d,corrupt_read_log_event2_set"
;
SET
GLOBAL
debug_dbug
=
"+d,corrupt_read_log_event2_set"
;
--
connection
slave
--
connection
slave
START
SLAVE
IO_THREAD
;
START
SLAVE
IO_THREAD
;
# When the checksum error is detected, the slave sets error code 1
91
3
# When the checksum error is detected, the slave sets error code 1
74
3
# (ER_NETWORK_READ_EVENT_CHECKSUM_FAILURE) in queue_event(), then immediately
# (ER_NETWORK_READ_EVENT_CHECKSUM_FAILURE) in queue_event(), then immediately
# sets error 1595 (ER_SLAVE_RELAY_LOG_WRITE_FAILURE) in handle_slave_io().
# sets error 1595 (ER_SLAVE_RELAY_LOG_WRITE_FAILURE) in handle_slave_io().
# So we usually get 1595, but it is occasionally possible to get 1
91
3.
# So we usually get 1595, but it is occasionally possible to get 1
74
3.
let
$slave_io_errno
=
1595
,
1
913
;
let
$slave_io_errno
=
1595
,
1
743
;
# ER_SLAVE_RELAY_LOG_WRITE_FAILURE, ER_NETWORK_READ_EVENT_CHECKSUM_FAILURE
--
source
include
/
wait_for_slave_io_error
.
inc
--
source
include
/
wait_for_slave_io_error
.
inc
--
connection
master
--
connection
master
SET
GLOBAL
debug_dbug
=
"-d,corrupt_read_log_event2_set"
;
SET
GLOBAL
debug_dbug
=
"-d,corrupt_read_log_event2_set"
;
...
@@ -138,7 +138,7 @@ SET GLOBAL master_verify_checksum=1;
...
@@ -138,7 +138,7 @@ SET GLOBAL master_verify_checksum=1;
--
connection
slave
--
connection
slave
SET
GLOBAL
debug_dbug
=
"+d,corrupt_queue_event"
;
SET
GLOBAL
debug_dbug
=
"+d,corrupt_queue_event"
;
START
SLAVE
IO_THREAD
;
START
SLAVE
IO_THREAD
;
let
$slave_io_errno
=
1595
,
1
913
;
let
$slave_io_errno
=
1595
,
1
743
;
# ER_SLAVE_RELAY_LOG_WRITE_FAILURE, ER_NETWORK_READ_EVENT_CHECKSUM_FAILURE
--
source
include
/
wait_for_slave_io_error
.
inc
--
source
include
/
wait_for_slave_io_error
.
inc
SET
GLOBAL
debug_dbug
=
"-d,corrupt_queue_event"
;
SET
GLOBAL
debug_dbug
=
"-d,corrupt_queue_event"
;
...
...
mysql-test/suite/rpl/r/rpl_corruption.result
View file @
5098d708
...
@@ -30,7 +30,7 @@ SET GLOBAL master_verify_checksum=0;
...
@@ -30,7 +30,7 @@ SET GLOBAL master_verify_checksum=0;
SET GLOBAL debug_dbug="+d,corrupt_read_log_event2_set";
SET GLOBAL debug_dbug="+d,corrupt_read_log_event2_set";
connection slave;
connection slave;
START SLAVE IO_THREAD;
START SLAVE IO_THREAD;
include/wait_for_slave_io_error.inc [errno=1595,1
91
3]
include/wait_for_slave_io_error.inc [errno=1595,1
74
3]
connection master;
connection master;
SET GLOBAL debug_dbug="-d,corrupt_read_log_event2_set";
SET GLOBAL debug_dbug="-d,corrupt_read_log_event2_set";
SET GLOBAL debug_dbug= "";
SET GLOBAL debug_dbug= "";
...
@@ -39,7 +39,7 @@ SET GLOBAL master_verify_checksum=1;
...
@@ -39,7 +39,7 @@ SET GLOBAL master_verify_checksum=1;
connection slave;
connection slave;
SET GLOBAL debug_dbug="+d,corrupt_queue_event";
SET GLOBAL debug_dbug="+d,corrupt_queue_event";
START SLAVE IO_THREAD;
START SLAVE IO_THREAD;
include/wait_for_slave_io_error.inc [errno=1595,1
91
3]
include/wait_for_slave_io_error.inc [errno=1595,1
74
3]
SET GLOBAL debug_dbug="-d,corrupt_queue_event";
SET GLOBAL debug_dbug="-d,corrupt_queue_event";
# 6. Slave. Corruption in relay log
# 6. Slave. Corruption in relay log
SET GLOBAL debug_dbug="+d,corrupt_read_log_event_char";
SET GLOBAL debug_dbug="+d,corrupt_read_log_event_char";
...
...
storage/innobase/include/mtr0mtr.h
View file @
5098d708
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
Copyright (c) 1995, 2017, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 1995, 2017, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 2012, Facebook Inc.
Copyright (c) 2012, Facebook Inc.
Copyright (c) 2013, 201
8
, MariaDB Corporation.
Copyright (c) 2013, 201
9
, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify it under
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
the terms of the GNU General Public License as published by the Free Software
...
@@ -134,62 +134,7 @@ struct mtr_memo_slot_t {
...
@@ -134,62 +134,7 @@ struct mtr_memo_slot_t {
/** Mini-transaction handle and buffer */
/** Mini-transaction handle and buffer */
struct
mtr_t
{
struct
mtr_t
{
mtr_t
()
:
m_state
(
MTR_STATE_INIT
)
{}
/** State variables of the mtr */
struct
Impl
{
/** memo stack for locks etc. */
mtr_buf_t
m_memo
;
/** mini-transaction log */
mtr_buf_t
m_log
;
/** true if mtr has made at least one buffer pool page dirty */
bool
m_made_dirty
;
/** true if inside ibuf changes */
bool
m_inside_ibuf
;
/** true if the mini-transaction modified buffer pool pages */
bool
m_modifications
;
/** Count of how many page initial log records have been
written to the mtr log */
ib_uint32_t
m_n_log_recs
;
/** specifies which operations should be logged; default
value MTR_LOG_ALL */
mtr_log_t
m_log_mode
;
#ifdef UNIV_DEBUG
/** Persistent user tablespace associated with the
mini-transaction, or 0 (TRX_SYS_SPACE) if none yet */
ulint
m_user_space_id
;
#endif
/* UNIV_DEBUG */
/** User tablespace that is being modified by the
mini-transaction */
fil_space_t
*
m_user_space
;
/** State of the transaction */
mtr_state_t
m_state
;
/** Flush Observer */
FlushObserver
*
m_flush_observer
;
#ifdef UNIV_DEBUG
/** For checking corruption. */
ulint
m_magic_n
;
#endif
/* UNIV_DEBUG */
/** Owning mini-transaction */
mtr_t
*
m_mtr
;
};
mtr_t
()
{
m_impl
.
m_state
=
MTR_STATE_INIT
;
}
~
mtr_t
()
{
}
/** Start a mini-transaction. */
/** Start a mini-transaction. */
void
start
();
void
start
();
...
@@ -211,14 +156,7 @@ struct mtr_t {
...
@@ -211,14 +156,7 @@ struct mtr_t {
/** Return current size of the buffer.
/** Return current size of the buffer.
@return savepoint */
@return savepoint */
ulint
get_savepoint
()
const
ulint
get_savepoint
()
const
{
ut_ad
(
is_active
());
return
m_memo
.
size
();}
MY_ATTRIBUTE
((
warn_unused_result
))
{
ut_ad
(
is_active
());
ut_ad
(
m_impl
.
m_magic_n
==
MTR_MAGIC_N
);
return
(
m_impl
.
m_memo
.
size
());
}
/** Release the (index tree) s-latch stored in an mtr memo after a
/** Release the (index tree) s-latch stored in an mtr memo after a
savepoint.
savepoint.
...
@@ -255,11 +193,11 @@ struct mtr_t {
...
@@ -255,11 +193,11 @@ struct mtr_t {
the same set of tablespaces as this one */
the same set of tablespaces as this one */
void
set_spaces
(
const
mtr_t
&
mtr
)
void
set_spaces
(
const
mtr_t
&
mtr
)
{
{
ut_ad
(
!
m_
impl
.
m_
user_space_id
);
ut_ad
(
!
m_user_space_id
);
ut_ad
(
!
m_
impl
.
m_
user_space
);
ut_ad
(
!
m_user_space
);
ut_d
(
m_
impl
.
m_user_space_id
=
mtr
.
m_impl
.
m_user_space_id
);
ut_d
(
m_
user_space_id
=
mtr
.
m_user_space_id
);
m_
impl
.
m_user_space
=
mtr
.
m_impl
.
m_user_space
;
m_
user_space
=
mtr
.
m_user_space
;
}
}
/** Set the tablespace associated with the mini-transaction
/** Set the tablespace associated with the mini-transaction
...
@@ -268,16 +206,16 @@ struct mtr_t {
...
@@ -268,16 +206,16 @@ struct mtr_t {
@return the tablespace */
@return the tablespace */
fil_space_t
*
set_named_space_id
(
ulint
space_id
)
fil_space_t
*
set_named_space_id
(
ulint
space_id
)
{
{
ut_ad
(
!
m_
impl
.
m_
user_space_id
);
ut_ad
(
!
m_user_space_id
);
ut_d
(
m_
impl
.
m_
user_space_id
=
space_id
);
ut_d
(
m_user_space_id
=
space_id
);
if
(
!
space_id
)
{
if
(
!
space_id
)
{
return
fil_system
.
sys_space
;
return
fil_system
.
sys_space
;
}
else
{
}
else
{
ut_ad
(
m_
impl
.
m_
user_space_id
==
space_id
);
ut_ad
(
m_user_space_id
==
space_id
);
ut_ad
(
!
m_
impl
.
m_
user_space
);
ut_ad
(
!
m_user_space
);
m_
impl
.
m_
user_space
=
fil_space_get
(
space_id
);
m_user_space
=
fil_space_get
(
space_id
);
ut_ad
(
m_
impl
.
m_
user_space
);
ut_ad
(
m_user_space
);
return
m_
impl
.
m_
user_space
;
return
m_user_space
;
}
}
}
}
...
@@ -286,10 +224,10 @@ struct mtr_t {
...
@@ -286,10 +224,10 @@ struct mtr_t {
@param[in] space user or system tablespace */
@param[in] space user or system tablespace */
void
set_named_space
(
fil_space_t
*
space
)
void
set_named_space
(
fil_space_t
*
space
)
{
{
ut_ad
(
!
m_
impl
.
m_
user_space_id
);
ut_ad
(
!
m_user_space_id
);
ut_d
(
m_
impl
.
m_
user_space_id
=
space
->
id
);
ut_d
(
m_user_space_id
=
space
->
id
);
if
(
space
->
id
)
{
if
(
space
->
id
)
{
m_
impl
.
m_
user_space
=
space
;
m_user_space
=
space
;
}
}
}
}
...
@@ -356,18 +294,12 @@ struct mtr_t {
...
@@ -356,18 +294,12 @@ struct mtr_t {
void
release_page
(
const
void
*
ptr
,
mtr_memo_type_t
type
);
void
release_page
(
const
void
*
ptr
,
mtr_memo_type_t
type
);
/** Note that the mini-transaction has modified data. */
/** Note that the mini-transaction has modified data. */
void
set_modified
()
void
set_modified
()
{
m_modifications
=
true
;
}
{
m_impl
.
m_modifications
=
true
;
}
/** Set the state to not-modified. This will not log the
/** Set the state to not-modified. This will not log the
changes. This is only used during redo log apply, to avoid
changes. This is only used during redo log apply, to avoid
logging the changes. */
logging the changes. */
void
discard_modifications
()
void
discard_modifications
()
{
m_modifications
=
false
;
}
{
m_impl
.
m_modifications
=
false
;
}
/** Get the LSN of commit().
/** Get the LSN of commit().
@return the commit LSN
@return the commit LSN
...
@@ -379,45 +311,28 @@ struct mtr_t {
...
@@ -379,45 +311,28 @@ struct mtr_t {
}
}
/** Note that we are inside the change buffer code. */
/** Note that we are inside the change buffer code. */
void
enter_ibuf
()
void
enter_ibuf
()
{
m_inside_ibuf
=
true
;
}
{
m_impl
.
m_inside_ibuf
=
true
;
}
/** Note that we have exited from the change buffer code. */
/** Note that we have exited from the change buffer code. */
void
exit_ibuf
()
void
exit_ibuf
()
{
m_inside_ibuf
=
false
;
}
{
m_impl
.
m_inside_ibuf
=
false
;
}
/** @return true if we are inside the change buffer code */
/** @return true if we are inside the change buffer code */
bool
is_inside_ibuf
()
const
bool
is_inside_ibuf
()
const
{
return
m_inside_ibuf
;
}
{
return
(
m_impl
.
m_inside_ibuf
);
}
/*
/*
@return true if the mini-transaction is active */
@return true if the mini-transaction is active */
bool
is_active
()
const
bool
is_active
()
const
{
return
m_state
==
MTR_STATE_ACTIVE
;
}
{
return
(
m_impl
.
m_state
==
MTR_STATE_ACTIVE
);
}
/** Get flush observer
/** Get flush observer
@return flush observer */
@return flush observer */
FlushObserver
*
get_flush_observer
()
const
FlushObserver
*
get_flush_observer
()
const
{
return
m_flush_observer
;
}
{
return
(
m_impl
.
m_flush_observer
);
}
/** Set flush observer
/** Set flush observer
@param[in] observer flush observer */
@param[in] observer flush observer */
void
set_flush_observer
(
FlushObserver
*
observer
)
void
set_flush_observer
(
FlushObserver
*
observer
)
{
{
ut_ad
(
observer
==
NULL
ut_ad
(
observer
==
NULL
||
m_log_mode
==
MTR_LOG_NO_REDO
);
||
m_impl
.
m_log_mode
==
MTR_LOG_NO_REDO
);
m_flush_observer
=
observer
;
m_impl
.
m_flush_observer
=
observer
;
}
}
#ifdef UNIV_DEBUG
#ifdef UNIV_DEBUG
...
@@ -457,65 +372,31 @@ struct mtr_t {
...
@@ -457,65 +372,31 @@ struct mtr_t {
void
print
()
const
;
void
print
()
const
;
/** @return true if the mini-transaction has committed */
/** @return true if the mini-transaction has committed */
bool
has_committed
()
const
bool
has_committed
()
const
{
return
m_state
==
MTR_STATE_COMMITTED
;
}
{
return
(
m_impl
.
m_state
==
MTR_STATE_COMMITTED
);
}
/** @return true if the mini-transaction is committing */
bool
is_committing
()
const
{
return
(
m_impl
.
m_state
==
MTR_STATE_COMMITTING
);
}
/** @return true if mini-transaction contains modifications. */
/** @return true if mini-transaction contains modifications. */
bool
has_modifications
()
const
bool
has_modifications
()
const
{
return
m_modifications
;
}
{
return
(
m_impl
.
m_modifications
);
}
/** @return the memo stack */
/** @return the memo stack */
const
mtr_buf_t
*
get_memo
()
const
const
mtr_buf_t
*
get_memo
()
const
{
return
&
m_memo
;
}
{
return
(
&
m_impl
.
m_memo
);
}
/** @return the memo stack */
/** @return the memo stack */
mtr_buf_t
*
get_memo
()
mtr_buf_t
*
get_memo
()
{
return
&
m_memo
;
}
{
return
(
&
m_impl
.
m_memo
);
}
#endif
/* UNIV_DEBUG */
#endif
/* UNIV_DEBUG */
/** @return true if a record was added to the mini-transaction */
/** @return true if a record was added to the mini-transaction */
bool
is_dirty
()
const
bool
is_dirty
()
const
{
return
m_made_dirty
;
}
{
return
(
m_impl
.
m_made_dirty
);
}
/** Note that a record has been added to the log */
/** Note that a record has been added to the log */
void
added_rec
()
void
added_rec
()
{
++
m_n_log_recs
;
}
{
++
m_impl
.
m_n_log_recs
;
}
/** Get the buffered redo log of this mini-transaction.
/** Get the buffered redo log of this mini-transaction.
@return redo log */
@return redo log */
const
mtr_buf_t
*
get_log
()
const
const
mtr_buf_t
*
get_log
()
const
{
return
&
m_log
;
}
{
ut_ad
(
m_impl
.
m_magic_n
==
MTR_MAGIC_N
);
return
(
&
m_impl
.
m_log
);
}
/** Get the buffered redo log of this mini-transaction.
/** Get the buffered redo log of this mini-transaction.
@return redo log */
@return redo log */
mtr_buf_t
*
get_log
()
mtr_buf_t
*
get_log
()
{
return
&
m_log
;
}
{
ut_ad
(
m_impl
.
m_magic_n
==
MTR_MAGIC_N
);
return
(
&
m_impl
.
m_log
);
}
/** Push an object to an mtr memo stack.
/** Push an object to an mtr memo stack.
@param object object
@param object object
...
@@ -529,15 +410,56 @@ struct mtr_t {
...
@@ -529,15 +410,56 @@ struct mtr_t {
MY_ATTRIBUTE
((
warn_unused_result
));
MY_ATTRIBUTE
((
warn_unused_result
));
private:
private:
class
Command
;
/** Prepare to write the mini-transaction log to the redo log buffer.
@return number of bytes to write in finish_write() */
inline
ulint
prepare_write
();
friend
class
Command
;
/** Append the redo log records to the redo log buffer.
@param[in] len number of bytes to write
@return start_lsn */
inline
lsn_t
finish_write
(
ulint
len
);
private:
/** Release the resources */
Impl
m_impl
;
inline
void
release_resources
();
/** memo stack for locks etc. */
mtr_buf_t
m_memo
;
/** mini-transaction log */
mtr_buf_t
m_log
;
/** true if mtr has made at least one buffer pool page dirty */
bool
m_made_dirty
;
/** true if inside ibuf changes */
bool
m_inside_ibuf
;
/** true if the mini-transaction modified buffer pool pages */
bool
m_modifications
;
/** Count of how many page initial log records have been
written to the mtr log */
ib_uint32_t
m_n_log_recs
;
/** specifies which operations should be logged; default
value MTR_LOG_ALL */
mtr_log_t
m_log_mode
;
#ifdef UNIV_DEBUG
/** Persistent user tablespace associated with the
mini-transaction, or 0 (TRX_SYS_SPACE) if none yet */
ulint
m_user_space_id
;
#endif
/* UNIV_DEBUG */
/** User tablespace that is being modified by the mini-transaction */
fil_space_t
*
m_user_space
;
/** State of the transaction */
mtr_state_t
m_state
;
/** Flush Observer */
FlushObserver
*
m_flush_observer
;
/** LSN at commit time */
/** LSN at commit time */
volatile
lsn_t
m_commit_lsn
;
lsn_t
m_commit_lsn
;
};
};
#include "mtr0mtr.ic"
#include "mtr0mtr.ic"
...
...
storage/innobase/include/mtr0mtr.ic
View file @
5098d708
...
@@ -49,7 +49,6 @@ mtr_t::memo_push(void* object, mtr_memo_type_t type)
...
@@ -49,7 +49,6 @@ mtr_t::memo_push(void* object, mtr_memo_type_t type)
ut_ad(object != NULL);
ut_ad(object != NULL);
ut_ad(type >= MTR_MEMO_PAGE_S_FIX);
ut_ad(type >= MTR_MEMO_PAGE_S_FIX);
ut_ad(type <= MTR_MEMO_SX_LOCK);
ut_ad(type <= MTR_MEMO_SX_LOCK);
ut_ad(m_impl.m_magic_n == MTR_MAGIC_N);
ut_ad(ut_is_2pow(type));
ut_ad(ut_is_2pow(type));
/* If this mtr has x-fixed a clean page then we set
/* If this mtr has x-fixed a clean page then we set
...
@@ -58,15 +57,13 @@ mtr_t::memo_push(void* object, mtr_memo_type_t type)
...
@@ -58,15 +57,13 @@ mtr_t::memo_push(void* object, mtr_memo_type_t type)
can insert the dirtied page to the flush list. */
can insert the dirtied page to the flush list. */
if ((type == MTR_MEMO_PAGE_X_FIX || type == MTR_MEMO_PAGE_SX_FIX)
if ((type == MTR_MEMO_PAGE_X_FIX || type == MTR_MEMO_PAGE_SX_FIX)
&& !m_
impl.m_
made_dirty) {
&& !m_made_dirty) {
m_
impl.m_
made_dirty = is_block_dirtied(
m_made_dirty = is_block_dirtied(
reinterpret_cast<const buf_block_t*>(object));
reinterpret_cast<const buf_block_t*>(object));
}
}
mtr_memo_slot_t* slot;
mtr_memo_slot_t* slot = m_memo.push<mtr_memo_slot_t*>(sizeof(*slot));
slot = m_impl.m_memo.push<mtr_memo_slot_t*>(sizeof(*slot));
slot->type = type;
slot->type = type;
slot->object = object;
slot->object = object;
...
@@ -81,11 +78,9 @@ mtr_t::release_s_latch_at_savepoint(
...
@@ -81,11 +78,9 @@ mtr_t::release_s_latch_at_savepoint(
rw_lock_t* lock)
rw_lock_t* lock)
{
{
ut_ad(is_active());
ut_ad(is_active());
ut_ad(m_impl.m_magic_n == MTR_MAGIC_N);
ut_ad(m_memo.size() > savepoint);
ut_ad(m_impl.m_memo.size() > savepoint);
mtr_memo_slot_t* slot = m_
impl.m_
memo.at<mtr_memo_slot_t*>(savepoint);
mtr_memo_slot_t* slot = m_memo.at<mtr_memo_slot_t*>(savepoint);
ut_ad(slot->object == lock);
ut_ad(slot->object == lock);
ut_ad(slot->type == MTR_MEMO_S_LOCK);
ut_ad(slot->type == MTR_MEMO_S_LOCK);
...
@@ -104,8 +99,7 @@ mtr_t::sx_latch_at_savepoint(
...
@@ -104,8 +99,7 @@ mtr_t::sx_latch_at_savepoint(
buf_block_t* block)
buf_block_t* block)
{
{
ut_ad(is_active());
ut_ad(is_active());
ut_ad(m_impl.m_magic_n == MTR_MAGIC_N);
ut_ad(m_memo.size() > savepoint);
ut_ad(m_impl.m_memo.size() > savepoint);
ut_ad(!memo_contains_flagged(
ut_ad(!memo_contains_flagged(
block,
block,
...
@@ -113,9 +107,7 @@ mtr_t::sx_latch_at_savepoint(
...
@@ -113,9 +107,7 @@ mtr_t::sx_latch_at_savepoint(
| MTR_MEMO_PAGE_X_FIX
| MTR_MEMO_PAGE_X_FIX
| MTR_MEMO_PAGE_SX_FIX));
| MTR_MEMO_PAGE_SX_FIX));
mtr_memo_slot_t* slot;
mtr_memo_slot_t* slot = m_memo.at<mtr_memo_slot_t*>(savepoint);
slot = m_impl.m_memo.at<mtr_memo_slot_t*>(savepoint);
ut_ad(slot->object == block);
ut_ad(slot->object == block);
...
@@ -124,8 +116,8 @@ mtr_t::sx_latch_at_savepoint(
...
@@ -124,8 +116,8 @@ mtr_t::sx_latch_at_savepoint(
rw_lock_sx_lock(&block->lock);
rw_lock_sx_lock(&block->lock);
if (!m_
impl.m_
made_dirty) {
if (!m_made_dirty) {
m_
impl.m_
made_dirty = is_block_dirtied(block);
m_made_dirty = is_block_dirtied(block);
}
}
slot->type = MTR_MEMO_PAGE_SX_FIX;
slot->type = MTR_MEMO_PAGE_SX_FIX;
...
@@ -140,8 +132,7 @@ mtr_t::x_latch_at_savepoint(
...
@@ -140,8 +132,7 @@ mtr_t::x_latch_at_savepoint(
buf_block_t* block)
buf_block_t* block)
{
{
ut_ad(is_active());
ut_ad(is_active());
ut_ad(m_impl.m_magic_n == MTR_MAGIC_N);
ut_ad(m_memo.size() > savepoint);
ut_ad(m_impl.m_memo.size() > savepoint);
ut_ad(!memo_contains_flagged(
ut_ad(!memo_contains_flagged(
block,
block,
...
@@ -149,9 +140,7 @@ mtr_t::x_latch_at_savepoint(
...
@@ -149,9 +140,7 @@ mtr_t::x_latch_at_savepoint(
| MTR_MEMO_PAGE_X_FIX
| MTR_MEMO_PAGE_X_FIX
| MTR_MEMO_PAGE_SX_FIX));
| MTR_MEMO_PAGE_SX_FIX));
mtr_memo_slot_t* slot;
mtr_memo_slot_t* slot = m_memo.at<mtr_memo_slot_t*>(savepoint);
slot = m_impl.m_memo.at<mtr_memo_slot_t*>(savepoint);
ut_ad(slot->object == block);
ut_ad(slot->object == block);
...
@@ -160,8 +149,8 @@ mtr_t::x_latch_at_savepoint(
...
@@ -160,8 +149,8 @@ mtr_t::x_latch_at_savepoint(
rw_lock_x_lock(&block->lock);
rw_lock_x_lock(&block->lock);
if (!m_
impl.m_
made_dirty) {
if (!m_made_dirty) {
m_
impl.m_
made_dirty = is_block_dirtied(block);
m_made_dirty = is_block_dirtied(block);
}
}
slot->type = MTR_MEMO_PAGE_X_FIX;
slot->type = MTR_MEMO_PAGE_X_FIX;
...
@@ -176,11 +165,8 @@ mtr_t::release_block_at_savepoint(
...
@@ -176,11 +165,8 @@ mtr_t::release_block_at_savepoint(
buf_block_t* block)
buf_block_t* block)
{
{
ut_ad(is_active());
ut_ad(is_active());
ut_ad(m_impl.m_magic_n == MTR_MAGIC_N);
mtr_memo_slot_t* slot;
slot = m_impl.
m_memo.at<mtr_memo_slot_t*>(savepoint);
mtr_memo_slot_t* slot =
m_memo.at<mtr_memo_slot_t*>(savepoint);
ut_a(slot->object == block);
ut_a(slot->object == block);
...
@@ -198,10 +184,10 @@ Gets the logging mode of a mini-transaction.
...
@@ -198,10 +184,10 @@ Gets the logging mode of a mini-transaction.
mtr_log_t
mtr_log_t
mtr_t::get_log_mode() const
mtr_t::get_log_mode() const
{
{
ut_ad(m_
impl.m_
log_mode >= MTR_LOG_ALL);
ut_ad(m_log_mode >= MTR_LOG_ALL);
ut_ad(m_
impl.m_
log_mode <= MTR_LOG_SHORT_INSERTS);
ut_ad(m_log_mode <= MTR_LOG_SHORT_INSERTS);
return
(m_impl.m_log_mode)
;
return
m_log_mode
;
}
}
/**
/**
...
@@ -214,7 +200,7 @@ mtr_t::set_log_mode(mtr_log_t mode)
...
@@ -214,7 +200,7 @@ mtr_t::set_log_mode(mtr_log_t mode)
ut_ad(mode >= MTR_LOG_ALL);
ut_ad(mode >= MTR_LOG_ALL);
ut_ad(mode <= MTR_LOG_SHORT_INSERTS);
ut_ad(mode <= MTR_LOG_SHORT_INSERTS);
const mtr_log_t old_mode = m_
impl.m_
log_mode;
const mtr_log_t old_mode = m_log_mode;
switch (old_mode) {
switch (old_mode) {
case MTR_LOG_NO_REDO:
case MTR_LOG_NO_REDO:
...
@@ -233,9 +219,8 @@ mtr_t::set_log_mode(mtr_log_t mode)
...
@@ -233,9 +219,8 @@ mtr_t::set_log_mode(mtr_log_t mode)
case MTR_LOG_ALL:
case MTR_LOG_ALL:
/* MTR_LOG_NO_REDO can only be set before generating
/* MTR_LOG_NO_REDO can only be set before generating
any redo log records. */
any redo log records. */
ut_ad(mode != MTR_LOG_NO_REDO
ut_ad(mode != MTR_LOG_NO_REDO || m_n_log_recs == 0);
|| m_impl.m_n_log_recs == 0);
m_log_mode = mode;
m_impl.m_log_mode = mode;
return(old_mode);
return(old_mode);
}
}
...
...
storage/innobase/include/mtr0types.h
View file @
5098d708
/*****************************************************************************
/*****************************************************************************
Copyright (c) 1995, 2015, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 1995, 2015, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 2017, 201
8
, MariaDB Corporation.
Copyright (c) 2017, 201
9
, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify it under
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
the terms of the GNU General Public License as published by the Free Software
...
@@ -36,18 +36,18 @@ struct mtr_t;
...
@@ -36,18 +36,18 @@ struct mtr_t;
/** Logging modes for a mini-transaction */
/** Logging modes for a mini-transaction */
enum
mtr_log_t
{
enum
mtr_log_t
{
/** Default mode: log all operations modifying disk-based data */
/** Default mode: log all operations modifying disk-based data */
MTR_LOG_ALL
=
21
,
MTR_LOG_ALL
=
0
,
/** Log no operations and dirty pages are not added to the flush list.
/** Log no operations and dirty pages are not added to the flush list.
Set when applying log in crash recovery or when a modification of a
Set when applying log in crash recovery or when a modification of a
ROW_FORMAT=COMPRESSED page is attempted. */
ROW_FORMAT=COMPRESSED page is attempted. */
MTR_LOG_NONE
=
22
,
MTR_LOG_NONE
,
/** Don't generate REDO log but add dirty pages to flush list */
/** Don't generate REDO log but add dirty pages to flush list */
MTR_LOG_NO_REDO
=
23
,
MTR_LOG_NO_REDO
,
/** Inserts are logged in a shorter form */
/** Inserts are logged in a shorter form */
MTR_LOG_SHORT_INSERTS
=
24
MTR_LOG_SHORT_INSERTS
};
};
/** @name Log item types
/** @name Log item types
...
@@ -271,15 +271,10 @@ enum mtr_memo_type_t {
...
@@ -271,15 +271,10 @@ enum mtr_memo_type_t {
};
};
#endif
/* !UNIV_CHECKSUM */
#endif
/* !UNIV_CHECKSUM */
#ifdef UNIV_DEBUG
# define MTR_MAGIC_N 54551
#endif
/* UNIV_DEBUG */
enum
mtr_state_t
{
enum
mtr_state_t
{
MTR_STATE_INIT
=
0
,
MTR_STATE_INIT
=
0
,
MTR_STATE_ACTIVE
=
12231
,
MTR_STATE_ACTIVE
,
MTR_STATE_COMMITTING
=
56456
,
MTR_STATE_COMMITTED
MTR_STATE_COMMITTED
=
34676
};
};
#endif
/* mtr0types_h */
#endif
/* mtr0types_h */
storage/innobase/log/log0recv.cc
View file @
5098d708
...
@@ -27,7 +27,6 @@ Created 9/20/1997 Heikki Tuuri
...
@@ -27,7 +27,6 @@ Created 9/20/1997 Heikki Tuuri
#include "univ.i"
#include "univ.i"
#include <vector>
#include <map>
#include <map>
#include <string>
#include <string>
#include <my_service_manager.h>
#include <my_service_manager.h>
...
@@ -3971,44 +3970,26 @@ recv_recovery_rollback_active(void)
...
@@ -3971,44 +3970,26 @@ recv_recovery_rollback_active(void)
@param[in] page_no page number
@param[in] page_no page number
@return page frame
@return page frame
@retval NULL if no page was found */
@retval NULL if no page was found */
const
byte
*
const
byte
*
recv_dblwr_t
::
find_page
(
ulint
space_id
,
ulint
page_no
)
recv_dblwr_t
::
find_page
(
ulint
space_id
,
ulint
page_no
)
{
{
typedef
std
::
vector
<
const
byte
*
,
ut_allocator
<
const
byte
*>
>
const
byte
*
result
=
NULL
;
matches_t
;
lsn_t
max_lsn
=
0
;
matches_t
matches
;
for
(
list
::
const_iterator
i
=
pages
.
begin
();
i
!=
pages
.
end
();
++
i
)
const
byte
*
result
=
0
;
{
const
byte
*
page
=
*
i
;
for
(
list
::
iterator
i
=
pages
.
begin
();
i
!=
pages
.
end
();
++
i
)
{
if
(
page_get_page_no
(
page
)
!=
page_no
||
if
(
page_get_space_id
(
*
i
)
==
space_id
page_get_space_id
(
page
)
!=
space_id
)
&&
page_get_page_no
(
*
i
)
==
page_no
)
{
continue
;
matches
.
push_back
(
*
i
);
const
lsn_t
lsn
=
mach_read_from_8
(
page
+
FIL_PAGE_LSN
);
}
if
(
lsn
<=
max_lsn
)
}
continue
;
max_lsn
=
lsn
;
if
(
matches
.
size
()
==
1
)
{
result
=
page
;
result
=
matches
[
0
];
}
}
else
if
(
matches
.
size
()
>
1
)
{
return
result
;
lsn_t
max_lsn
=
0
;
lsn_t
page_lsn
=
0
;
for
(
matches_t
::
iterator
i
=
matches
.
begin
();
i
!=
matches
.
end
();
++
i
)
{
page_lsn
=
mach_read_from_8
(
*
i
+
FIL_PAGE_LSN
);
if
(
page_lsn
>
max_lsn
)
{
max_lsn
=
page_lsn
;
result
=
*
i
;
}
}
}
return
(
result
);
}
}
#ifndef DBUG_OFF
#ifndef DBUG_OFF
...
...
storage/innobase/mtr/mtr0mtr.cc
View file @
5098d708
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment