~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-11-28 22:02:19 UTC
  • mfrom: (1228 push)
  • mto: (1228.4.1 push)
  • mto: This revision was merged to the branch mainline in revision 1234.
  • Revision ID: osullivan.padraig@gmail.com-20091128220219-m3x28m8q2unbirke
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include "drizzled/common.h"
25
25
#include "drizzled/lex_string.h"
26
26
#include "drizzled/comp_creator.h"
 
27
#include <drizzled/table_identifier.h>
27
28
 
28
29
#include "mystrings/m_ctype.h"
29
30
 
40
41
bool update_precheck(Session *session, TableList *tables);
41
42
bool delete_precheck(Session *session, TableList *tables);
42
43
bool insert_precheck(Session *session, TableList *tables);
43
 
bool create_table_precheck(Session *session, TableList *tables,
44
 
                           TableList *create_table);
 
44
bool create_table_precheck(drizzled::TableIdentifier &identifier);
45
45
 
46
46
Item *negate_expression(Session *session, Item *expr);
47
47