~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/parser.h

  • Committer: Brian Aker
  • Date: 2011-01-26 06:46:27 UTC
  • mfrom: (2114.4.6 alter-table)
  • Revision ID: brian@tangent.org-20110126064627-hdeuvbmu4upjgjb4
MergeĀ parserĀ tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
bool check_reserved_words(LEX_STRING *name);
136
136
void errorOn(const char *s);
137
137
bool buildOrderBy(Session *session);
 
138
void buildEngineOption(Session *session, const char *key, const LEX_STRING &value);
 
139
void buildEngineOption(Session *session, const char *key, uint64_t value);
 
140
void buildSchemaOption(Session *session, const char *key, const LEX_STRING &value);
 
141
void buildSchemaOption(Session *session, const char *key, uint64_t value);
 
142
bool checkFieldIdent(Session *session, const LEX_STRING &schema_name, const LEX_STRING &table_name);
 
143
 
 
144
Item *buildIdent(Session *session, const LEX_STRING &schema_name, const LEX_STRING &table_name, const LEX_STRING &field_name);
138
145
 
139
146
} // namespace parser
140
147
} // namespace drizzled