~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <stdint.h>
24
24
 
25
 
typedef struct st_table_share TABLE_SHARE;
 
25
class TABLE_SHARE;
26
26
 
27
27
void table_cache_free(void);
28
28
bool table_cache_init(void);
213
213
void copy_field_from_tmp_record(Field *field,int offset);
214
214
bool fill_record(Session * session, List<Item> &fields, List<Item> &values, bool ignore_errors);
215
215
bool fill_record(Session *session, Field **field, List<Item> &values, bool ignore_errors);
216
 
OPEN_TableList *list_open_tables(Session *session, const char *db, const char *wild);
 
216
OPEN_TableList *list_open_tables(const char *db, const char *wild);
217
217
 
218
218
inline TableList *find_table_in_global_list(TableList *table,
219
219
                                             const char *db_name,