SHOW and FLUSH for I_S tables.

Extend existing plugins to support
* SHOW QUERY_RESPONSE_TIME
* FLUSH QUERY_RESPONSE_TIME
* SHOW LOCALE

move userstat tables to use the new API instead of
hand-coded syntax
This commit is contained in:
Sergei Golubchik 2014-08-25 19:08:01 +02:00
commit db8af31831
103 changed files with 457 additions and 425 deletions

View file

@ -286,9 +286,10 @@ void query_response_time_free()
query_response_time::g_collector.flush();
}
void query_response_time_flush()
int query_response_time_flush()
{
query_response_time::g_collector.flush();
return 0;
}
void query_response_time_collect(ulonglong query_time)
{