~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Brian Aker
  • Date: 2009-07-29 18:35:48 UTC
  • mfrom: (1101.1.12 merge)
  • Revision ID: brian@gaz-20090729183548-yp36iwoaemfc76z0
Merging Monty (which includes new replication)

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
#include "drizzled/foreign_key.h"
39
39
#include "drizzled/item/param.h"
40
40
#include "drizzled/index_hint.h"
 
41
#include "drizzled/command.h"
41
42
 
42
43
#include <bitset>
43
44
 
911
912
  */
912
913
  nesting_map allow_sum_func;
913
914
  enum_sql_command sql_command;
 
915
  drizzled::command::SqlCommand *command;
914
916
  /*
915
917
    Usually `expr` rule of yacc is quite reused but some commands better
916
918
    not support subqueries which comes standard with this rule, like
994
996
  */
995
997
  virtual ~LEX()
996
998
  {
 
999
    /*
 
1000
     * When the switch statement from sql_parse is completely
 
1001
     * removed, we need to de-allocate the memory from the 
 
1002
     * classes allocated for them here.
 
1003
     */
997
1004
  }
998
1005
 
999
1006
  TableList *unlink_first_table(bool *link_to_local);