~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/select.cc

  • Committer: Lee Bieber
  • Date: 2010-12-23 23:11:00 UTC
  • mfrom: (2024.1.1 clean)
  • Revision ID: kalebral@gmail.com-20101223231100-0rqirgz7ugkl10yp
Merge Brian - session list cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
namespace drizzled
26
26
{
27
27
 
28
 
namespace statement
29
 
{
30
 
 
31
 
Select::Select(Session *in_session) :
32
 
  Statement(in_session)
33
 
  {
34
 
    getSession()->getLex()->sql_command= SQLCOM_SELECT;
35
 
  }
36
 
 
37
 
bool Select::execute()
38
 
{
39
 
  TableList *all_tables= getSession()->lex->query_tables;
40
 
  getSession()->status_var.last_query_cost= 0.0;
41
 
  bool res= execute_sqlcom_select(getSession(), all_tables);
 
28
bool statement::Select::execute()
 
29
{
 
30
  TableList *all_tables= session->lex->query_tables;
 
31
  session->status_var.last_query_cost= 0.0;
 
32
  bool res= execute_sqlcom_select(session, all_tables);
42
33
 
43
34
  return res;
44
35
}
45
36
 
46
 
} /* namespace statement */
47
37
} /* namespace drizzled */
 
38