~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_SQL_BASE_H
21
21
#define DRIZZLED_SQL_BASE_H
22
22
 
23
 
#include <stdint.h>
24
23
#include <drizzled/table.h>
25
24
 
 
25
namespace drizzled
 
26
{
26
27
class TableShare;
27
28
class Name_resolution_context;
28
29
 
146
147
                      const char *wild,
147
148
                      bool(*func)(Table *table,
148
149
                                  open_table_list_st& open_list,
149
 
                                  drizzled::plugin::InfoSchemaTable *schema_table),
 
150
                                  plugin::InfoSchemaTable *schema_table),
150
151
                      Table *display,
151
 
                      drizzled::plugin::InfoSchemaTable *schema_table);
 
152
                      plugin::InfoSchemaTable *schema_table);
152
153
 
153
154
inline TableList *find_table_in_global_list(TableList *table,
154
155
                                             const char *db_name,
157
158
  return find_table_in_list(table, &TableList::next_global,
158
159
                            db_name, table_name);
159
160
}
 
161
 
 
162
} /* namespace drizzled */
 
163
 
160
164
#endif /* DRIZZLED_SQL_BASE_H */