~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

A number of dead code removal patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
 
144
144
void mem_alloc_error(size_t size);
145
145
 
146
 
bool fill_record(Session* session, List<Item> &fields, List<Item> &values, bool ignore_errors);
147
 
bool fill_record(Session *session, Field **field, List<Item> &values, bool ignore_errors);
148
 
bool list_open_tables(const char *db, 
149
 
                      const char *wild, 
150
 
                      bool(*func)(Table *table, 
 
146
bool fill_record(Session* session, List<Item> &fields, List<Item> &values, bool ignore_errors= false);
 
147
bool fill_record(Session *session, Field **field, List<Item> &values, bool ignore_errors= false);
 
148
bool list_open_tables(const char *db,
 
149
                      const char *wild,
 
150
                      bool(*func)(Table *table,
151
151
                                  open_table_list_st& open_list,
152
 
                                  drizzled::plugin::InfoSchemaTable *schema_table), 
 
152
                                  drizzled::plugin::InfoSchemaTable *schema_table),
153
153
                      Table *display,
154
154
                      drizzled::plugin::InfoSchemaTable *schema_table);
155
155