~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-17 21:39:27 UTC
  • mto: This revision was merged to the branch mainline in revision 2442.
  • Revision ID: olafvdspek@gmail.com-20111017213927-wa77gvp34yxcb4uk
Use str_ref

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
 
122
122
 
123
123
bool buildOrderBy(LEX *lex);
124
 
void buildEngineOption(LEX *lex, const char *key, const lex_string_t &value);
 
124
void buildEngineOption(LEX *lex, const char *key, str_ref value);
125
125
void buildEngineOption(LEX *lex, const char *key, uint64_t value);
126
 
void buildSchemaOption(LEX *lex, const char *key, const lex_string_t &value);
 
126
void buildSchemaOption(LEX *lex, const char *key, str_ref value);
127
127
void buildSchemaOption(LEX *lex, const char *key, uint64_t value);
128
128
void buildSchemaDefiner(LEX *lex, const lex_string_t &value);
129
129
void buildSchemaDefiner(LEX *lex, const identifier::User &user);