MCPcopy Create free account
hub / github.com/MariaDB/server / all_tables_not_ok

Function all_tables_not_ok

sql/sql_parse.cc:396–401  ·  view source on GitHub ↗

Returns true if all tables should be ignored. */

Source from the content-addressed store, hash-verified

394 Returns true if all tables should be ignored.
395*/
396inline 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

Callers 2

sql_parse.ccFile · 0.85

Calls 2

tables_okMethod · 0.80
is_onMethod · 0.45

Tested by

no test coverage detected