~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

  • Committer: Lee Bieber
  • Date: 2011-03-18 04:10:25 UTC
  • mfrom: (2241.1.2 build)
  • Revision ID: kalebral@gmail.com-20110318041025-1xoj1azy6zobhnbm
Merge Stewart - refactoring of default values
Merge Olaf - more refactoring

Show diffs side-by-side

added added

removed removed

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