~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/log_event.cc

  • Committer: Brian Aker
  • Date: 2008-07-26 18:39:33 UTC
  • mfrom: (212.1.3 codestyle)
  • Revision ID: brian@tangent.org-20080726183933-hueup0fcy2zs1hug
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
2976
2976
}
2977
2977
 
2978
2978
Log_event::enum_skip_reason
2979
 
Format_description_log_event::do_shall_skip(Relay_log_info *rli __attribute__((__unused__)))
 
2979
Format_description_log_event::do_shall_skip(Relay_log_info *rli __attribute__((unused)))
2980
2980
{
2981
2981
  return Log_event::EVENT_SKIP_NOT;
2982
2982
}
4269
4269
 
4270
4270
 
4271
4271
#if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
4272
 
int Xid_log_event::do_apply_event(Relay_log_info const *rli __attribute__((__unused__)))
 
4272
int Xid_log_event::do_apply_event(Relay_log_info const *rli __attribute__((unused)))
4273
4273
{
4274
4274
  /* For a slave Xid_log_event is COMMIT */
4275
4275
  general_log_print(thd, COM_QUERY,
4818
4818
 
4819
4819
 
4820
4820
#ifndef MYSQL_CLIENT
4821
 
int Slave_log_event::do_apply_event(Relay_log_info const *rli __attribute__((__unused__)))
 
4821
int Slave_log_event::do_apply_event(Relay_log_info const *rli __attribute__((unused)))
4822
4822
{
4823
4823
  if (mysql_bin_log.is_open())
4824
4824
    mysql_bin_log.write(this);
5379
5379
*/
5380
5380
 
5381
5381
#if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
5382
 
int Delete_file_log_event::do_apply_event(Relay_log_info const *rli __attribute__((__unused__)))
 
5382
int Delete_file_log_event::do_apply_event(Relay_log_info const *rli __attribute__((unused)))
5383
5383
{
5384
5384
  char fname[FN_REFLEN+10];
5385
5385
  char *ext= slave_load_file_stem(fname, file_id, server_id, ".data");
6770
6770
 */
6771
6771
#if !defined(MYSQL_CLIENT)
6772
6772
Table_map_log_event::Table_map_log_event(THD *thd, TABLE *tbl, ulong tid,
6773
 
                                         bool is_transactional __attribute__((__unused__)),
 
6773
                                         bool is_transactional __attribute__((unused)),
6774
6774
                                         uint16_t flags)
6775
6775
  : Log_event(thd, 0, true),
6776
6776
    m_table(tbl),