MXS-1703 Move do_show_slave_status() to MariaDBServer

Also took into use the QueryResult helper class.
This commit is contained in:
Esa Korhonen
2018-03-22 17:43:41 +02:00
parent 6535448374
commit 1d5128fc5b
5 changed files with 174 additions and 180 deletions

View File

@ -147,4 +147,12 @@ public:
* results are assumed unique.
*/
std::auto_ptr<QueryResult> execute_query(const std::string& query);
};
/**
* Update server slave connection information.
*
* @param gtid_domain Which gtid domain should be parsed.
* @return True on success
*/
bool do_show_slave_status(int64_t gtid_domain);
};