~eday/drizzle/eday-dev

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Eric Day
  • Date: 2010-01-07 20:02:38 UTC
  • mfrom: (971.3.291 staging)
  • Revision ID: eday@oddments.org-20100107200238-uqw8v6kv9pl7nny5
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include "drizzled/comp_creator.h"
27
27
#include <drizzled/table_identifier.h>
28
28
 
29
 
#include "mystrings/m_ctype.h"
30
29
 
31
30
class Session;
32
31
class TableList;
36
35
class Table_ident;
37
36
class Select_Lex;
38
37
 
 
38
typedef struct charset_info_st CHARSET_INFO;
 
39
 
 
40
extern const LEX_STRING command_name[];
 
41
 
39
42
bool execute_sqlcom_select(Session *session, TableList *all_tables);
40
43
bool mysql_insert_select_prepare(Session *session);
41
44
bool update_precheck(Session *session, TableList *tables);
81
84
                                bool all,
82
85
                                Select_Lex *select_lex);
83
86
 
 
87
void sql_kill(Session *session, unsigned long id, bool only_kill_query);
 
88
char* query_table_status(Session *session,const char *db,const char *table_name);
 
89
 
84
90
#endif /* DRIZZLED_SQL_PARSE_H */