~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/execute.cc

  • Committer: Mark Atwood
  • Date: 2011-08-12 04:08:33 UTC
  • mfrom: (2385.2.17 refactor5)
  • Revision ID: me@mark.atwood.name-20110812040833-u6j85nc6ahuc0dtz
mergeĀ lp:~olafvdspek/drizzle/refactor5

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
namespace statement {
38
38
 
39
39
Execute::Execute(Session *in_session,
40
 
                 drizzled::execute_string_t to_execute_arg,
 
40
                 execute_string_t to_execute_arg,
41
41
                 bool is_quiet_arg,
42
42
                 bool is_concurrent_arg,
43
43
                 bool should_wait_arg) :
121
121
    }
122
122
 
123
123
    drizzled::Execute executer(session(), should_wait);
124
 
    executer.run(to_execute.str, to_execute.length);
 
124
    executer.run(to_execute);
125
125
  }
126
126
  else // Non-concurrent run.
127
127
  {