~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.cc

Re-org'd the replication stuff into slots.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
using namespace std;
42
42
using namespace drizzled;
43
 
extern drizzled::ReplicationServices replication_services;
44
43
 
45
44
static const char hexchars[]= "0123456789abcdef";
46
45
bool is_primary_key(KEY *key_info)
329
328
void write_bin_log(Session *session, bool,
330
329
                   char const *query, size_t query_length)
331
330
{
 
331
  ReplicationServices &replication_services= ReplicationServices::singleton();
332
332
  replication_services.rawStatement(session, query, query_length);
333
333
}
334
334