~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/rename_table.cc

  • Committer: Mark Atwood
  • Date: 2011-06-24 11:45:17 UTC
  • mfrom: (2318.6.64 rf)
  • Revision ID: me@mark.atwood.name-20110624114517-1mq8no6jlp2nrg7m
mergeĀ lp:~olafvdspek/drizzle/refactor15

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
  /* Lets hope this doesn't fail as the result will be messy */
118
118
  if (not error)
119
119
  {
120
 
    TransactionServices &transaction_services= TransactionServices::singleton();
121
 
    transaction_services.rawStatement(session(),
122
 
                                      *session().getQueryString(),
123
 
                                      *session().schema());        
 
120
    TransactionServices::rawStatement(session(), *session().getQueryString(), *session().schema());        
124
121
    session().my_ok();
125
122
  }
126
123