~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to sql/rpl_filter.cc

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
351
351
  DBUG_ENTER("Rpl_filter::add_do_db");
352
352
  i_string *db = new i_string(table_spec);
353
353
  do_db.push_back(db);
 
354
  DBUG_VOID_RETURN;
354
355
}
355
356
 
356
357
 
360
361
  DBUG_ENTER("Rpl_filter::add_ignore_db");
361
362
  i_string *db = new i_string(table_spec);
362
363
  ignore_db.push_back(db);
 
364
  DBUG_VOID_RETURN;
363
365
}
364
366
 
365
367
extern "C" uchar *get_table_key(const uchar *, size_t *, my_bool);