inserts all plugins, their versions, and usage counters */
| 207 | inserts all plugins, their versions, and usage counters |
| 208 | */ |
| 209 | int fill_plugin_version(THD *thd, TABLE_LIST *tables) |
| 210 | { |
| 211 | return plugin_foreach_with_mask(thd, show_plugins, MYSQL_ANY_PLUGIN, |
| 212 | ~PLUGIN_IS_FREED, tables->table); |
| 213 | } |
| 214 | |
| 215 | #if defined(_SC_PAGE_SIZE) && !defined(_SC_PAGESIZE) |
| 216 | #define _SC_PAGESIZE _SC_PAGE_SIZE |
no test coverage detected