~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

Reverted my change to interval_list

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_SQL_PARSE_H
21
 
#define DRIZZLED_SQL_PARSE_H
22
 
 
23
 
#include "drizzled/definitions.h"
24
 
#include "drizzled/common.h"
25
 
#include "drizzled/lex_string.h"
26
 
#include "drizzled/comp_creator.h"
27
 
#include "drizzled/table_identifier.h"
28
 
 
29
 
namespace drizzled
30
 
{
 
20
#ifndef DRIZZLE_SERVER_SQL_PARSE_H
 
21
#define DRIZZLE_SERVER_SQL_PARSE_H
 
22
 
 
23
#include <stdint.h>
 
24
 
 
25
#include <drizzled/definitions.h>
 
26
#include <drizzled/common.h>
 
27
#include <drizzled/lex_string.h>
 
28
#include <drizzled/comp_creator.h>
 
29
 
 
30
#include <mystrings/m_ctype.h>
31
31
 
32
32
class Session;
33
33
class TableList;
35
35
class Item;
36
36
class LEX;
37
37
class Table_ident;
38
 
class Select_Lex;
39
 
 
40
 
typedef struct charset_info_st CHARSET_INFO;
41
 
 
42
 
extern const LEX_STRING command_name[];
43
38
 
44
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);
45
44
bool mysql_insert_select_prepare(Session *session);
46
45
bool update_precheck(Session *session, TableList *tables);
47
46
bool delete_precheck(Session *session, TableList *tables);
48
47
bool insert_precheck(Session *session, TableList *tables);
49
 
bool create_table_precheck(TableIdentifier &identifier);
 
48
bool create_table_precheck(Session *session, TableList *tables,
 
49
                           TableList *create_table);
 
50
bool parse_sql(Session *session, Lex_input_stream *lip);
50
51
 
51
52
Item *negate_expression(Session *session, Item *expr);
52
53
 
 
54
bool test_if_data_home_dir(const char *dir);
 
55
 
53
56
bool check_identifier_name(LEX_STRING *str, uint32_t err_code= 0,
54
57
                           uint32_t max_char_length= NAME_CHAR_LEN,
55
58
                           const char *param_for_err_msg= "");
61
64
                              bool no_error);
62
65
 
63
66
 
 
67
void mysql_parse(Session *session, const char *inBuf, uint32_t length,
 
68
                 const char ** semicolon);
 
69
 
64
70
bool mysql_test_parse_for_slave(Session *session, char *inBuf,
65
71
                                uint32_t length);
66
72
 
 
73
bool is_update_query(enum enum_sql_command command);
 
74
 
67
75
void mysql_reset_session_for_next_command(Session *session);
68
76
 
69
77
void create_select_for_variable(const char *var_name);
70
78
 
 
79
void mysql_init_multi_delete(LEX *lex);
 
80
 
 
81
bool multi_delete_set_locks_and_link_aux_tables(LEX *lex);
 
82
 
71
83
void init_update_queries(void);
72
84
 
73
85
bool dispatch_command(enum enum_server_command command, Session *session,
74
86
                      char* packet, uint32_t packet_length);
75
87
 
 
88
bool reload_cache(Session *session, ulong options, TableList *tables);
 
89
 
76
90
bool check_simple_select();
77
91
 
78
92
void mysql_init_select(LEX *lex);
79
93
bool mysql_new_select(LEX *lex, bool move_down);
80
94
 
81
 
int prepare_new_schema_table(Session *session, LEX *lex,
82
 
                             const std::string& schema_table_name);
 
95
int prepare_schema_table(Session *session, LEX *lex, Table_ident *table_ident,
 
96
                         const std::string& schema_table_name);
83
97
 
84
98
Item * all_any_subquery_creator(Item *left_expr,
85
99
                                chooser_compare_func_creator cmp,
86
100
                                bool all,
87
101
                                Select_Lex *select_lex);
88
102
 
89
 
void sql_kill(Session *session, unsigned long id, bool only_kill_query);
90
 
char* query_table_status(Session *session,const char *db,const char *table_name);
91
 
 
92
 
} /* namespace drizzled */
93
 
 
94
 
#endif /* DRIZZLED_SQL_PARSE_H */
 
103
#endif /* DRIZZLE_SERVER_SQL_PARSE_H */