~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Monty Taylor
  • Date: 2009-12-22 20:47:20 UTC
  • mto: This revision was merged to the branch mainline in revision 1253.
  • Revision ID: mordred@inaugust.com-20091222204720-7ynx08xryaihgj8h
Removed one more public IO_CACHE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2000-2003 MySQL AB
2
 
 
3
 
   This program is free software; you can redistribute it and/or modify
4
 
   it under the terms of the GNU General Public License as published by
5
 
   the Free Software Foundation; version 2 of the License.
6
 
 
7
 
   This program is distributed in the hope that it will be useful,
8
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
 
   GNU General Public License for more details.
11
 
 
12
 
   You should have received a copy of the GNU General Public License
13
 
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
 
 
16
 
#ifndef DRIZZLE_SERVER_SQL_PARSE_H
17
 
#define DRIZZLE_SERVER_SQL_PARSE_H
18
 
 
19
 
bool begin_trans(THD *thd);
20
 
bool end_active_trans(THD *thd);
21
 
int end_trans(THD *thd, enum enum_mysql_completiontype completion);
22
 
 
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
 
int mysql_multi_update_prepare(THD *thd);
27
 
int mysql_multi_delete_prepare(THD *thd);
28
 
bool mysql_insert_select_prepare(THD *thd);
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
 
bool parse_sql(THD *thd, class Lex_input_stream *lip);
35
 
 
36
 
Item *negate_expression(THD *thd, Item *expr);
37
 
 
38
 
bool test_if_data_home_dir(const char *dir);
39
 
 
40
 
bool check_identifier_name(LEX_STRING *str, uint max_char_length,
41
 
                           uint err_code, const char *param_for_err_msg);
42
 
inline bool check_identifier_name(LEX_STRING *str, uint err_code)
43
 
{
44
 
  return check_identifier_name(str, NAME_CHAR_LEN, err_code, "");
45
 
}
46
 
inline bool check_identifier_name(LEX_STRING *str)
47
 
{
48
 
  return check_identifier_name(str, NAME_CHAR_LEN, 0, "");
49
 
}
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2008 Sun Microsystems
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; version 2 of the License.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 */
 
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
#include "mystrings/m_ctype.h"
 
30
 
 
31
class Session;
 
32
class TableList;
 
33
class Lex_input_stream;
 
34
class Item;
 
35
class LEX;
 
36
class Table_ident;
 
37
class Select_Lex;
 
38
 
 
39
extern const LEX_STRING command_name[];
 
40
 
 
41
bool execute_sqlcom_select(Session *session, TableList *all_tables);
 
42
bool mysql_insert_select_prepare(Session *session);
 
43
bool update_precheck(Session *session, TableList *tables);
 
44
bool delete_precheck(Session *session, TableList *tables);
 
45
bool insert_precheck(Session *session, TableList *tables);
 
46
bool create_table_precheck(drizzled::TableIdentifier &identifier);
 
47
 
 
48
Item *negate_expression(Session *session, Item *expr);
 
49
 
 
50
bool check_identifier_name(LEX_STRING *str, uint32_t err_code= 0,
 
51
                           uint32_t max_char_length= NAME_CHAR_LEN,
 
52
                           const char *param_for_err_msg= "");
50
53
 
51
54
bool check_string_byte_length(LEX_STRING *str, const char *err_msg,
52
 
                              uint max_byte_length);
 
55
                              uint32_t max_byte_length);
53
56
bool check_string_char_length(LEX_STRING *str, const char *err_msg,
54
 
                              uint max_char_length, const CHARSET_INFO * const cs,
 
57
                              uint32_t max_char_length, const CHARSET_INFO * const cs,
55
58
                              bool no_error);
56
59
 
57
 
#endif /* DRIZZLE_SERVER_SQL_PARSE_H */
 
60
 
 
61
bool mysql_test_parse_for_slave(Session *session, char *inBuf,
 
62
                                uint32_t length);
 
63
 
 
64
void mysql_reset_session_for_next_command(Session *session);
 
65
 
 
66
void create_select_for_variable(const char *var_name);
 
67
 
 
68
void init_update_queries(void);
 
69
 
 
70
bool dispatch_command(enum enum_server_command command, Session *session,
 
71
                      char* packet, uint32_t packet_length);
 
72
 
 
73
bool check_simple_select();
 
74
 
 
75
void mysql_init_select(LEX *lex);
 
76
bool mysql_new_select(LEX *lex, bool move_down);
 
77
 
 
78
int prepare_schema_table(Session *session, LEX *lex, Table_ident *table_ident,
 
79
                         const std::string& schema_table_name);
 
80
 
 
81
Item * all_any_subquery_creator(Item *left_expr,
 
82
                                chooser_compare_func_creator cmp,
 
83
                                bool all,
 
84
                                Select_Lex *select_lex);
 
85
 
 
86
#endif /* DRIZZLED_SQL_PARSE_H */