~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_table.h

  • Committer: Olaf van der Spek
  • Date: 2011-10-14 10:56:52 UTC
  • mto: This revision was merged to the branch mainline in revision 2438.
  • Revision ID: olafvdspek@gmail.com-20111014105652-3089oith2v1n3uwr
Add const

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;