~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

  • Committer: Brian Aker
  • Date: 2009-07-27 04:14:30 UTC
  • mfrom: (1093.6.2 table_share)
  • Revision ID: brian@gaz-20090727041430-kmxsnb2ep1cqsy05
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
void table_cache_free(void);
29
29
bool table_cache_init(void);
30
 
bool table_def_init(void);
31
 
void table_def_free(void);
32
30
void assign_new_table_id(TableShare *share);
33
31
uint32_t cached_open_tables(void);
34
32
uint32_t cached_table_definitions(void);
190
188
void copy_field_from_tmp_record(Field *field,int offset);
191
189
bool fill_record(Session * session, List<Item> &fields, List<Item> &values, bool ignore_errors);
192
190
bool fill_record(Session *session, Field **field, List<Item> &values, bool ignore_errors);
193
 
OPEN_TableList *list_open_tables(const char *db, const char *wild);
 
191
bool list_open_tables(const char *db, const char *wild, bool(*func)(Table *table, open_table_list_st& open_list), Table *display);
194
192
 
195
193
inline TableList *find_table_in_global_list(TableList *table,
196
194
                                             const char *db_name,