~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/select.cc

  • Committer: Monty Taylor
  • Date: 2011-03-08 23:35:47 UTC
  • mfrom: (2224.2.9 statement2)
  • mto: This revision was merged to the branch mainline in revision 2227.
  • Revision ID: mordred@inaugust.com-20110308233547-w2s3tm5svzv339dp
Merged Olaf - Statement refactor.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
Select::Select(Session *in_session) :
32
32
  Statement(in_session)
33
33
  {
34
 
    getSession()->getLex()->sql_command= SQLCOM_SELECT;
 
34
    set_command(SQLCOM_SELECT);
35
35
  }
36
36
 
37
37
bool Select::execute()
38
38
{
39
 
  TableList *all_tables= getSession()->getLex()->query_tables;
 
39
  TableList *all_tables= lex().query_tables;
40
40
  getSession()->status_var.last_query_cost= 0.0;
41
41
  bool res= execute_sqlcom_select(getSession(), all_tables);
42
42