~jaypipes/drizzle/transaction_log

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Jay Pipes
  • Date: 2009-12-22 03:07:38 UTC
  • mfrom: (1143.14.85 build)
  • Revision ID: jpipes@serialcoder-20091222030738-gnb0vyg77fmkt4cj
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
#include "drizzled/statement.h"
39
39
 
40
40
#include <bitset>
 
41
#include <string>
41
42
 
42
43
class select_result_interceptor;
43
44
 
423
424
    by TableList::next_leaf, so leaf_tables points to the left-most leaf.
424
425
  */
425
426
  TableList *leaf_tables;
426
 
  const char *type;               /* type of select for EXPLAIN          */
 
427
  std::string type; /* type of select for EXPLAIN          */
427
428
 
428
429
  SQL_LIST order_list;                /* ORDER clause */
429
430
  SQL_LIST *gorder_list;
673
674
    of Query_tables_list instances which are used as backup storage.
674
675
  */
675
676
  Query_tables_list() {}
676
 
  ~Query_tables_list() {}
 
677
  virtual ~Query_tables_list() {}
677
678
 
678
679
  /* Initializes (or resets) Query_tables_list object for "real" use. */
679
680
  void reset_query_tables_list(bool init);