~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/log.cc

  • Committer: Brian Aker
  • Date: 2008-12-22 06:22:15 UTC
  • mfrom: (722.1.9 devel)
  • Revision ID: brian@tangent.org-20081222062215-q2zhizw1kl3zedua
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
3152
3152
  return table->s->table_map_version == table_map_version();
3153
3153
}
3154
3154
 
3155
 
 
3156
 
#ifdef INNODB_COMPATIBILITY_HOOKS
3157
3155
/**
3158
3156
  Get the file name of the MySQL binlog.
3159
3157
  @return the name of the binlog file
3163
3161
{
3164
3162
  return drizzle_bin_log.get_log_fname();
3165
3163
}
 
3164
 
 
3165
 
3166
3166
/**
3167
3167
  Get the current position of the MySQL binlog.
3168
3168
  @return byte offset from the beginning of the binlog
3172
3172
{
3173
3173
  return (uint64_t) drizzle_bin_log.get_log_file()->pos_in_file;
3174
3174
}
3175
 
#endif /* INNODB_COMPATIBILITY_HOOKS */
3176
3175
 
3177
3176
 
3178
3177
mysql_declare_plugin(binlog)