~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Brian Aker
  • Date: 2009-09-23 17:16:34 UTC
  • mto: This revision was merged to the branch mainline in revision 1135.
  • Revision ID: brian@gaz-20090923171634-jyh23kiclji7tomh
A number of changes for LEx -> CreateTable

Show diffs side-by-side

added added

removed removed

Lines of Context:
837
837
 
838
838
  thr_lock_type lock_option;
839
839
  enum enum_duplicates duplicates;
840
 
  enum enum_tx_isolation tx_isolation;
841
 
  enum enum_ha_read_modes ha_read_mode;
842
840
  union {
843
841
    enum ha_rkey_function ha_rkey_mode;
844
842
    enum xa_option_words xa_opt;
846
844
  enum enum_var_type option_type;
847
845
 
848
846
  enum column_format_type column_format;
849
 
  enum Foreign_key::fk_match_opt fk_match_option;
850
 
  enum Foreign_key::fk_option fk_update_opt;
851
 
  enum Foreign_key::fk_option fk_delete_opt;
852
847
  /* Options used in START TRANSACTION statement */
853
848
  uint32_t start_transaction_opt;
854
849
  int nest_level;
859
854
  */
860
855
  uint8_t derived_tables;
861
856
 
862
 
  /* True if "IF EXISTS" used in DROP statement */
863
 
  bool drop_if_exists;
864
 
  /* True if "TEMPORARY" used in DROP/CREATE statement */
865
 
  bool drop_temporary;
866
 
  bool one_shot_set;
867
 
 
868
857
  /* Only true when FULL symbol is found (e.g. SHOW FULL PROCESSLIST) */
869
858
  bool verbose;
870
859