diff options
author | Teemu Ollakka <teemu.ollakka@galeracluster.com> | 2015-03-26 10:25:58 +0200 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2015-05-08 17:41:07 -0400 |
commit | 0115ca2ae1c0ce06b3de6cc8c4f7f8a06220cff6 (patch) | |
tree | a093acb9c52cdcbe9ca0725d98370d55a6ff31c4 /sql/wsrep_mysqld.h | |
parent | 4ed9ddd30eefbedb4bb2f96a0f0eb2ab18d283a0 (diff) | |
download | mariadb-git-0115ca2ae1c0ce06b3de6cc8c4f7f8a06220cff6.tar.gz |
refs codership/mysql-wsrep#98 fixed sidno initialization
Sidno initialization was skipped in wsrep_sst_received() if the
received position matched to current position. However, sidno
initialization must be done every time server is started to
add inverted group uuid into sidno map.
Diffstat (limited to 'sql/wsrep_mysqld.h')
-rw-r--r-- | sql/wsrep_mysqld.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/wsrep_mysqld.h b/sql/wsrep_mysqld.h index 79a16e5f8d1..24df127135e 100644 --- a/sql/wsrep_mysqld.h +++ b/sql/wsrep_mysqld.h @@ -324,4 +324,5 @@ int wsrep_alter_event_query(THD *thd, uchar** buf, size_t* buf_len); #ifdef GTID_SUPPORT void wsrep_init_sidno(const wsrep_uuid_t&); #endif /* GTID_SUPPORT */ + #endif /* WSREP_MYSQLD_H */ |