~capttofu/drizzle/drizzle_memcached

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Brian Aker
  • Date: 2008-11-18 23:19:19 UTC
  • mfrom: (584.1.16 devel)
  • Revision ID: brian@tangent.org-20081118231919-w9sr347dtiwhccml
Merge of Monty's work.

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 */