~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

  • Committer: Brian Aker
  • Date: 2009-12-03 01:17:53 UTC
  • mto: (1237.3.2 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: brian@gaz-20091203011753-159h2no5m5c5dt9b
Small cleanups, did in MERGE table only engine flag.

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