~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Padraig O'Sullivan
  • Date: 2009-08-08 04:22:33 UTC
  • mto: (1115.3.4 captain)
  • mto: This revision was merged to the branch mainline in revision 1117.
  • Revision ID: osullivan.padraig@gmail.com-20090808042233-q0z88zc490z3f3r7
Renamed the Command class to be Statement. Renamed the command directory to
statement and also the command header file to statement. Updated various
source files to reflect this renaming.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#include <drizzled/connect.h>
37
37
#include <drizzled/lock.h>
38
38
#include <drizzled/select_send.h>
39
 
#include <drizzled/command.h>
 
39
#include <drizzled/statement.h>
40
40
 
41
41
#include <bitset>
42
42
#include <algorithm>
1181
1181
   */
1182
1182
  if (comm_not_executed)
1183
1183
  {
1184
 
    /* now we are ready to execute the command */
1185
 
    res= lex->command->execute();
 
1184
    /* now we are ready to execute the statement */
 
1185
    res= lex->statement->execute();
1186
1186
  }
1187
1187
 
1188
1188
  session->set_proc_info("query end");