| 345 | |
| 346 | |
| 347 | int fill_plugins(THD *thd, TABLE_LIST *tables, COND *cond) |
| 348 | { |
| 349 | DBUG_ENTER("fill_plugins"); |
| 350 | TABLE *table= tables->table; |
| 351 | |
| 352 | if (plugin_foreach_with_mask(thd, show_plugins, MYSQL_ANY_PLUGIN, |
| 353 | ~PLUGIN_IS_FREED, table)) |
| 354 | DBUG_RETURN(1); |
| 355 | |
| 356 | DBUG_RETURN(0); |
| 357 | } |
| 358 | |
| 359 | |
| 360 | /* Ignore common errors from plugin load */ |
nothing calls this directly
no test coverage detected