~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Brian Aker
  • Date: 2008-08-14 20:59:41 UTC
  • Revision ID: brian@tangent.org-20080814205941-rdqc6mqguf50mvoq
Remove SET

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
bool end_active_trans(THD *thd);
21
21
int end_trans(THD *thd, enum enum_mysql_completiontype completion);
22
22
 
23
 
bool execute_sqlcom_select(THD *thd, TableList *all_tables);
24
 
bool multi_update_precheck(THD *thd, TableList *tables);
25
 
bool multi_delete_precheck(THD *thd, TableList *tables);
 
23
bool execute_sqlcom_select(THD *thd, TABLE_LIST *all_tables);
 
24
bool multi_update_precheck(THD *thd, TABLE_LIST *tables);
 
25
bool multi_delete_precheck(THD *thd, TABLE_LIST *tables);
26
26
int mysql_multi_update_prepare(THD *thd);
27
27
int mysql_multi_delete_prepare(THD *thd);
28
28
bool mysql_insert_select_prepare(THD *thd);
29
 
bool update_precheck(THD *thd, TableList *tables);
30
 
bool delete_precheck(THD *thd, TableList *tables);
31
 
bool insert_precheck(THD *thd, TableList *tables);
32
 
bool create_table_precheck(THD *thd, TableList *tables,
33
 
                           TableList *create_table);
 
29
bool update_precheck(THD *thd, TABLE_LIST *tables);
 
30
bool delete_precheck(THD *thd, TABLE_LIST *tables);
 
31
bool insert_precheck(THD *thd, TABLE_LIST *tables);
 
32
bool create_table_precheck(THD *thd, TABLE_LIST *tables,
 
33
                           TABLE_LIST *create_table);
34
34
bool parse_sql(THD *thd, class Lex_input_stream *lip);
35
35
 
36
36
Item *negate_expression(THD *thd, Item *expr);