~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Brian Aker
  • Date: 2008-08-12 19:35:12 UTC
  • Revision ID: brian@tangent.org-20080812193512-q0wkkj3zuqi6vg78
Remove object_creation_ctx.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
bool insert_precheck(THD *thd, TABLE_LIST *tables);
32
32
bool create_table_precheck(THD *thd, TABLE_LIST *tables,
33
33
                           TABLE_LIST *create_table);
34
 
bool parse_sql(THD *thd,
35
 
               class Lex_input_stream *lip,
36
 
               class Object_creation_ctx *creation_ctx);
 
34
bool parse_sql(THD *thd, class Lex_input_stream *lip);
37
35
 
38
36
Item *negate_expression(THD *thd, Item *expr);
39
37