~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Brian Aker
  • Date: 2009-02-07 22:02:41 UTC
  • Revision ID: brian@tangent.org-20090207220241-ez3828o1246ab2sp
Removing on typedeffed class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
class LEX;
37
37
class Table_ident;
38
38
 
39
 
typedef class st_select_lex SELECT_LEX;
 
39
typedef class Select_Lex Select_Lex;
40
40
 
41
41
bool begin_trans(Session *session);
42
42
bool end_active_trans(Session *session);
114
114
Item * all_any_subquery_creator(Item *left_expr,
115
115
                                chooser_compare_func_creator cmp,
116
116
                                bool all,
117
 
                                SELECT_LEX *select_lex);
 
117
                                Select_Lex *select_lex);
118
118
 
119
119
#endif /* DRIZZLE_SERVER_SQL_PARSE_H */