~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-03-10 10:44:18 UTC
  • mto: This revision was merged to the branch mainline in revision 2233.
  • Revision ID: olafvdspek@gmail.com-20110310104418-9nye3afuge7hnf5g
Statement::session()

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
      return false;
122
122
    }
123
123
 
124
 
    drizzled::Execute executer(*getSession(), should_wait);
 
124
    drizzled::Execute executer(session(), should_wait);
125
125
    executer.run(to_execute.str, to_execute.length);
126
126
  }
127
127
  else // Non-concurrent run.
219
219
    }
220
220
    else
221
221
    {
222
 
      parse(getSession(), to_execute.str, to_execute.length);
 
222
      parse(&session(), to_execute.str, to_execute.length);
223
223
    }
224
224
  }
225
225