~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Brian Aker
  • Date: 2008-08-16 22:34:15 UTC
  • mto: This revision was merged to the branch mainline in revision 346.
  • Revision ID: brian@tangent.org-20080816223415-n24esdpfcqi4pwpy
Refactor around classes. TABLE_LIST has been factored out of table.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
396
396
protected:
397
397
  TABLE_LIST result_table_list;
398
398
  select_union *union_result;
399
 
  TABLE *table; /* temporary table using for appending UNION results */
 
399
  Table *table; /* temporary table using for appending UNION results */
400
400
 
401
401
  select_result *result;
402
402
  uint64_t found_rows_for_union;
767
767
#define ALTER_FOREIGN_KEY         (1L << 31)
768
768
 
769
769
/**
770
 
  @brief Parsing data for CREATE or ALTER TABLE.
 
770
  @brief Parsing data for CREATE or ALTER Table.
771
771
 
772
772
  This structure contains a list of columns or indexes to be created,
773
773
  altered or dropped.
1465
1465
  union {
1466
1466
    enum ha_rkey_function ha_rkey_mode;
1467
1467
    enum xa_option_words xa_opt;
1468
 
    bool lock_transactional;            /* For LOCK TABLE ... IN ... MODE */
 
1468
    bool lock_transactional;            /* For LOCK Table ... IN ... MODE */
1469
1469
  };
1470
1470
  enum enum_var_type option_type;
1471
1471