~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

  • Committer: Brian Aker
  • Date: 2011-02-04 09:28:16 UTC
  • mfrom: (2140.1.4 timestamp)
  • mto: This revision was merged to the branch mainline in revision 2144.
  • Revision ID: brian@tangent.org-20110204092816-2s32j9hlh6ztz7ti
Merge in fix for not found table (simplifies the caller as well).

Events are now just being processed on shared tables.

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>
27
26
#include <drizzled/table/concurrent.h>
28
27
 
29
 
#include <drizzled/visibility.h>
 
28
#include "drizzled/visibility.h"
30
29
 
31
30
namespace drizzled
32
31
{
58
57
                               Item *default_value, Item *on_update_value,
59
58
                               LEX_STRING *comment, char *change,
60
59
                               List<String> *interval_list, CHARSET_INFO *cs);
 
60
void store_position_for_column(const char *name);
61
61
bool push_new_name_resolution_context(Session *session,
62
62
                                      TableList *left_op,
63
63
                                      TableList *right_op);
101
101
                          enum_resolution_type *resolution);
102
102
bool insert_fields(Session *session, Name_resolution_context *context,
103
103
                   const char *db_name, const char *table_name,
104
 
                   List<Item>::iterator *it, bool any_privileges);
 
104
                   List_iterator<Item> *it, bool any_privileges);
105
105
bool setup_tables(Session *session, Name_resolution_context *context,
106
106
                  List<TableList> *from_clause, TableList *tables,
107
107
                  TableList **leaves, bool select_insert);
155
155
                            db_name, table_name);
156
156
}
157
157
 
158
 
bool drizzle_rm_tmp_tables();
159
 
 
160
158
} /* namespace drizzled */
161
159
 
162
160
#endif /* DRIZZLED_SQL_BASE_H */