~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:29:49 UTC
  • mfrom: (322 drizzle)
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812212949-i7vl3lz5y7u7tdry
Merge from trunk

Did a global search and replace for MYSQL_* variables.  Renamed to DRIZZLE_*.

Renamed value of DRIZZLE_CONFIG_NAME from "my" to "drizzled"

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