~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

Merge Stewart's dead code removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
bool remove_table_from_cache(Session *session, const char *db, const char *table,
142
142
                             uint32_t flags);
143
143
 
144
 
#define NORMAL_PART_NAME 0
145
 
#define TEMP_PART_NAME 1
146
 
#define RENAMED_PART_NAME 2
147
 
 
148
144
void mem_alloc_error(size_t size);
149
145
 
150
 
#define WFRM_WRITE_SHADOW 1
151
 
#define WFRM_INSTALL_SHADOW 2
152
 
#define WFRM_PACK_FRM 4
153
 
#define WFRM_KEEP_SHARE 8
154
 
 
155
146
bool fill_record(Session* session, List<Item> &fields, List<Item> &values, bool ignore_errors);
156
147
bool fill_record(Session *session, Field **field, List<Item> &values, bool ignore_errors);
157
148
bool list_open_tables(const char *db, const char *wild, bool(*func)(Table *table, open_table_list_st& open_list), Table *display);