1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00
- Moves call wsrep_free_status() to THD::cleanup_after_query().
  Wsrep status variables were previously freed only on SHOW STATUS.
- Removes valgrind suppression from mysql-test/valgrind.
This commit is contained in:
Daniele Sciascia
2015-10-02 10:16:55 +02:00
committed by Nirbhay Choubey
parent 00b058aca3
commit 0ec457b0de
3 changed files with 4 additions and 25 deletions

View File

@@ -2361,6 +2361,10 @@ void THD::cleanup_after_query()
rgi_slave->cleanup_after_query();
#endif
#ifdef WITH_WSREP
wsrep_free_status(this);
#endif /* WITH_WSREP */
DBUG_VOID_RETURN;
}