~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#define DRIZZLED_SQL_BASE_H
24
24
 
25
25
#include <drizzled/table.h>
 
26
#include <drizzled/table_list.h>
26
27
#include <drizzled/table/concurrent.h>
27
28
 
28
 
#include "drizzled/visibility.h"
 
29
#include <drizzled/visibility.h>
29
30
 
30
31
namespace drizzled
31
32
{
100
101
                          enum_resolution_type *resolution);
101
102
bool insert_fields(Session *session, Name_resolution_context *context,
102
103
                   const char *db_name, const char *table_name,
103
 
                   List_iterator<Item> *it, bool any_privileges);
 
104
                   List<Item>::iterator *it, bool any_privileges);
104
105
bool setup_tables(Session *session, Name_resolution_context *context,
105
106
                  List<TableList> *from_clause, TableList *tables,
106
107
                  TableList **leaves, bool select_insert);
154
155
                            db_name, table_name);
155
156
}
156
157
 
 
158
bool drizzle_rm_tmp_tables();
 
159
 
157
160
} /* namespace drizzled */
158
161
 
159
162
#endif /* DRIZZLED_SQL_BASE_H */