Returns true if all tables should be ignored. */
| 394 | Returns true if all tables should be ignored. |
| 395 | */ |
| 396 | inline bool all_tables_not_ok(THD *thd, TABLE_LIST *tables) |
| 397 | { |
| 398 | Rpl_filter *rpl_filter= thd->system_thread_info.rpl_sql_info->rpl_filter; |
| 399 | return rpl_filter->is_on() && tables && !thd->spcont && |
| 400 | !rpl_filter->tables_ok(thd->db.str, tables); |
| 401 | } |
| 402 | #endif |
| 403 | |
| 404 |
no test coverage detected