~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/parser.h

  • Committer: Olaf van der Spek
  • Date: 2011-10-24 21:55:16 UTC
  • mto: This revision was merged to the branch mainline in revision 2449.
  • Revision ID: olafvdspek@gmail.com-20111024215516-eu30mb3yhh9a28zq
Use str_ref

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
void storeAlterColumnPosition(LEX*, const char *position);
136
136
 
137
137
bool buildCollation(LEX*, const charset_info_st *arg);
138
 
void buildKey(LEX*, Key::Keytype type_par, const lex_string_t &name_arg);
139
 
void buildForeignKey(LEX*, const lex_string_t &name_arg, Table_ident *table);
 
138
void buildKey(LEX*, Key::Keytype type_par, str_ref name_arg);
 
139
void buildForeignKey(LEX*, str_ref name_arg, Table_ident *table);
140
140
 
141
141
enum_field_types buildIntegerColumn(LEX*, enum_field_types final_type, const bool is_unsigned);
142
142
enum_field_types buildSerialColumn(LEX*);