~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/execute.cc

  • Committer: Olaf van der Spek
  • Date: 2011-08-10 17:58:23 UTC
  • mto: This revision was merged to the branch mainline in revision 2396.
  • Revision ID: olafvdspek@gmail.com-20110810175823-s0tm7bv5qlg8uyaf
Refactor

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
  {