~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 17:33:01 UTC
  • mto: This revision was merged to the branch mainline in revision 2449.
  • Revision ID: olafvdspek@gmail.com-20111024173301-f388y1q50dg75nsr
Use str_ref

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
void buildSchemaOption(LEX*, const char *key, str_ref value);
127
127
void buildSchemaOption(LEX*, const char *key, uint64_t value);
128
128
void buildSchemaDefiner(LEX*, const identifier::User&);
129
 
bool checkFieldIdent(LEX*, const lex_string_t &schema_name, const lex_string_t &table_name);
 
129
bool checkFieldIdent(LEX*, str_ref schema_name, str_ref table_name);
130
130
 
131
 
Item *buildIdent(LEX*, const lex_string_t &schema_name, const lex_string_t &table_name, const lex_string_t &field_name);
132
 
Item *buildTableWild(LEX*, const lex_string_t &schema_name, const lex_string_t &table_name);
 
131
Item *buildIdent(LEX*, str_ref schema_name, str_ref table_name, str_ref field_name);
 
132
Item *buildTableWild(LEX*, str_ref schema_name, str_ref table_name);
133
133
 
134
134
void buildCreateFieldIdent(LEX*);
135
 
 
136
135
void storeAlterColumnPosition(LEX*, const char *position);
137
136
 
138
137
bool buildCollation(LEX*, const charset_info_st *arg);