~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.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:
61
61
                                      TableList *right_op);
62
62
void add_join_on(TableList *b,Item *expr);
63
63
void add_join_natural(TableList *a,TableList *b,List<String> *using_fields,
64
 
                      SELECT_LEX *lex);
 
64
                      Select_Lex *lex);
65
65
bool add_proc_to_list(Session *session, Item *item);
66
66
void unlink_open_table(Session *session, Table *find, bool unlock);
67
67
void drop_open_table(Session *session, Table *table, const char *db_name,
136
136
}
137
137
int setup_conds(Session *session, TableList *tables, TableList *leaves,
138
138
                COND **conds);
139
 
int setup_ftfuncs(SELECT_LEX* select);
140
 
int init_ftfuncs(Session *session, SELECT_LEX* select, bool no_order);
 
139
int setup_ftfuncs(Select_Lex* select);
 
140
int init_ftfuncs(Session *session, Select_Lex* select, bool no_order);
141
141
void wait_for_condition(Session *session, pthread_mutex_t *mutex,
142
142
                        pthread_cond_t *cond);
143
143
int open_tables(Session *session, TableList **tables, uint32_t *counter, uint32_t flags);