~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.cc

  • Committer: Monty Taylor
  • Date: 2009-04-10 18:23:14 UTC
  • mfrom: (988.1.6 message)
  • mto: (992.1.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: mordred@inaugust.com-20090410182314-24t2odxekxn9aafg
Merged Jay.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#include <drizzled/unireg.h>
32
32
#include <drizzled/item/int.h>
33
33
#include <drizzled/item/empty_string.h>
34
 
#include <drizzled/replicator.h>
 
34
#include <drizzled/transaction_services.h>
 
35
 
35
36
 
36
37
using namespace std;
37
 
 
 
38
extern drizzled::TransactionServices transaction_services;
38
39
extern HASH lock_db_cache;
39
40
 
40
41
int creating_table= 0;        // How many mysql_create_table are running
298
299
void write_bin_log(Session *session, bool,
299
300
                   char const *query, size_t query_length)
300
301
{
301
 
  (void)replicator_statement(session, query, query_length);
 
302
  transaction_services.rawStatement(session, query, query_length);
302
303
}
303
304
 
304
305