~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Brian Aker
  • Date: 2008-11-21 22:11:22 UTC
  • Revision ID: brian@tangent.org-20081121221122-b39onio2vhnmbenm
RemoveĀ oneĀ set.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4362
4362
{
4363
4363
  if (table->no_replicate)
4364
4364
    return 0;
 
4365
 
4365
4366
  bool error= 0;
4366
4367
  Session *const session= table->in_use;
4367
4368
 
4378
4379
      error= (*log_func)(session, table, has_trans, before_record, after_record);
4379
4380
    }
4380
4381
  }
 
4382
 
4381
4383
  return error ? HA_ERR_RBR_LOGGING_FAILED : 0;
4382
4384
}
4383
4385