diff options
author | Nirbhay Choubey <nirbhay@mariadb.com> | 2016-05-31 20:37:00 -0400 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2016-05-31 20:37:00 -0400 |
commit | de7eafc7ce1af2f61952f6d0efb41c408c2765c6 (patch) | |
tree | 830ac44a78c0670532b74be92f096d1f5c273d67 /sql/wsrep_sst.h | |
parent | eb86c32225db2a76c6f256130e7bb316900a9408 (diff) | |
download | mariadb-git-de7eafc7ce1af2f61952f6d0efb41c408c2765c6.tar.gz |
MDEV-6368: assertion xid_seqno > trx_sys_cur_xid_seqno
- Validate the specified wsrep_start_position value by also
checking the return status of wsrep->sst_received. This also
ensures that changes in wsrep_start_position is not allowed
when the node is not in JOINING state.
- Do not allow decrease in seqno within same UUID.
- The initial checkpoint in SEs should be [0...:-1].
Diffstat (limited to 'sql/wsrep_sst.h')
-rw-r--r-- | sql/wsrep_sst.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/wsrep_sst.h b/sql/wsrep_sst.h index 49dd5b39fad..d465f897985 100644 --- a/sql/wsrep_sst.h +++ b/sql/wsrep_sst.h @@ -63,7 +63,7 @@ extern void wsrep_sst_grab(); /*! Init thread waits for SST completion */ extern bool wsrep_sst_wait(); /*! Signals wsrep that initialization is complete, writesets can be applied */ -extern void wsrep_sst_continue(); +extern bool wsrep_sst_continue(); extern void wsrep_sst_auth_free(); extern void wsrep_SE_init_grab(); /*! grab init critical section */ |