~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Monty Taylor
  • Date: 2008-11-18 22:12:56 UTC
  • mto: (589.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081118221256-ap2kmj073pdw7uap
The mega-patch from hell. Renamed sql_class to session (since that's what it is) and removed it and field and table from common_includes. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <drizzled/definitions.h>
26
26
#include <drizzled/common.h>
27
27
#include <drizzled/lex_string.h>
 
28
#include <drizzled/comp_creator.h>
28
29
 
29
30
#include <mystrings/m_ctype.h>
30
31
 
35
36
class LEX;
36
37
class Table_ident;
37
38
 
 
39
typedef class st_select_lex SELECT_LEX;
38
40
 
39
41
bool begin_trans(Session *session);
40
42
bool end_active_trans(Session *session);
109
111
int prepare_schema_table(Session *session, LEX *lex, Table_ident *table_ident,
110
112
                         enum enum_schema_tables schema_table_idx);
111
113
 
 
114
Item * all_any_subquery_creator(Item *left_expr,
 
115
                                chooser_compare_func_creator cmp,
 
116
                                bool all,
 
117
                                SELECT_LEX *select_lex);
112
118
 
113
119
#endif /* DRIZZLE_SERVER_SQL_PARSE_H */