diff options
author | Alexander Barkov <bar@mariadb.org> | 2014-08-11 05:45:45 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2014-08-11 05:45:45 +0400 |
commit | 22a64047d14d1199ced885f63bcccd39459681d6 (patch) | |
tree | 8087b8b89fe8602f43355f88ce91c8ce1e34b55b /plugin/feedback/feedback.cc | |
parent | 4105cbf4a230c82ea7dee31d4d2262b798fad9f4 (diff) | |
download | mariadb-git-22a64047d14d1199ced885f63bcccd39459681d6.tar.gz |
MDEV-6274 Collation usage statistics
Adding collation usage statistics into the feedback plugin I_S table.
Diffstat (limited to 'plugin/feedback/feedback.cc')
-rw-r--r-- | plugin/feedback/feedback.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/feedback/feedback.cc b/plugin/feedback/feedback.cc index 54459ae6f17..f644bd597d9 100644 --- a/plugin/feedback/feedback.cc +++ b/plugin/feedback/feedback.cc @@ -217,7 +217,8 @@ int fill_feedback(THD *thd, TABLE_LIST *tables, COND *unused) tables->schema_table= i_s_feedback; res= res || fill_plugin_version(thd, tables) || fill_misc_data(thd, tables) - || fill_linux_info(thd, tables); + || fill_linux_info(thd, tables) + || fill_collation_statistics(thd, tables); return res; } |