~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Brian Aker
  • Date: 2009-08-04 06:21:17 UTC
  • mfrom: (1108.2.2 merge)
  • Revision ID: brian@gaz-20090804062117-fef8x6y3ydzrvab3
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
class Table_ident;
38
38
 
39
39
bool execute_sqlcom_select(Session *session, TableList *all_tables);
40
 
bool multi_update_precheck(Session *session, TableList *tables);
41
 
bool multi_delete_precheck(Session *session, TableList *tables);
42
 
int mysql_multi_update_prepare(Session *session);
43
 
int mysql_multi_delete_prepare(Session *session);
44
40
bool mysql_insert_select_prepare(Session *session);
45
41
bool update_precheck(Session *session, TableList *tables);
46
42
bool delete_precheck(Session *session, TableList *tables);
76
72
 
77
73
void create_select_for_variable(const char *var_name);
78
74
 
79
 
void mysql_init_multi_delete(LEX *lex);
80
 
 
81
 
bool multi_delete_set_locks_and_link_aux_tables(LEX *lex);
82
 
 
83
75
void init_update_queries(void);
84
76
 
85
77
bool dispatch_command(enum enum_server_command command, Session *session,