~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_table.h

  • Committer: Mark Atwood
  • Date: 2011-10-14 15:59:08 UTC
  • mfrom: (2430.1.12 refactor3a)
  • Revision ID: me@mark.atwood.name-20111014155908-whqmrmaf2grpsg5c
mergeĀ lp:~olafvdspek/drizzle/refactor3

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
  message::Table::ForeignKeyConstraint::ForeignKeyOption fk_delete_opt;
75
75
 
76
76
  /* The text in a CHANGE COLUMN clause in ALTER TABLE */
77
 
  char *change;
 
77
  const char *change;
78
78
 
79
79
  /* An item representing the DEFAULT clause in CREATE/ALTER TABLE */
80
80
  Item *default_value;
82
82
  /* An item representing the ON UPDATE clause in CREATE/ALTER TABLE */
83
83
  Item *on_update_value;
84
84
 
85
 
  enum column_format_type column_format;
 
85
  column_format_type column_format;
86
86
 
87
87
  /* Poly-use */
88
88
  lex_string_t comment;