~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Monty Taylor
  • Date: 2008-08-18 23:04:17 UTC
  • mfrom: (327.1.12 drizzle)
  • Revision ID: monty@inaugust.com-20080818230417-442rhihpahnout34
MergedĀ fromĀ trunk.

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;
493
493
  Name_resolution_context context;
494
494
  char *db;
495
495
  Item *where, *having;                         /* WHERE & HAVING clauses */
496
 
  Item *prep_where; /* saved WHERE clause for prepared statement processing */
497
 
  Item *prep_having;/* saved HAVING clause for prepared statement processing */
498
496
  /* Saved values of the WHERE and HAVING clauses*/
499
497
  Item::cond_result cond_value, having_value;
500
498
  /* point on lex in which it was created, used in view subquery detection */
767
765
#define ALTER_FOREIGN_KEY         (1L << 31)
768
766
 
769
767
/**
770
 
  @brief Parsing data for CREATE or ALTER TABLE.
 
768
  @brief Parsing data for CREATE or ALTER Table.
771
769
 
772
770
  This structure contains a list of columns or indexes to be created,
773
771
  altered or dropped.
1465
1463
  union {
1466
1464
    enum ha_rkey_function ha_rkey_mode;
1467
1465
    enum xa_option_words xa_opt;
1468
 
    bool lock_transactional;            /* For LOCK TABLE ... IN ... MODE */
 
1466
    bool lock_transactional;            /* For LOCK Table ... IN ... MODE */
1469
1467
  };
1470
1468
  enum enum_var_type option_type;
1471
1469