~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Lee Bieber
  • Date: 2011-01-24 17:20:08 UTC
  • mfrom: (2107.2.1 trunk-bug-703913)
  • mto: This revision was merged to the branch mainline in revision 2109.
  • Revision ID: kalebral@gmail.com-20110124172008-y5maihyoyu7gn18p
Merge Andrew - fix bug 703913: some support-files should be dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_SQL_PARSE_H
21
21
#define DRIZZLED_SQL_PARSE_H
22
22
 
23
 
#include <string>
24
 
 
25
 
#include <drizzled/definitions.h>
26
 
#include <drizzled/common.h>
27
 
#include <drizzled/lex_string.h>
28
 
#include <drizzled/comp_creator.h>
29
 
#include <drizzled/identifier.h>
30
 
 
31
 
#include <drizzled/error_t.h>
32
 
#include <drizzled/visibility.h>
 
23
#include "drizzled/definitions.h"
 
24
#include "drizzled/common.h"
 
25
#include "drizzled/lex_string.h"
 
26
#include "drizzled/comp_creator.h"
 
27
#include "drizzled/identifier.h"
 
28
 
 
29
#include "drizzled/error_t.h"
33
30
 
34
31
namespace drizzled
35
32
{
44
41
 
45
42
typedef struct charset_info_st CHARSET_INFO;
46
43
 
47
 
DRIZZLED_API const std::string &getCommandName(const enum_server_command& command);
 
44
extern const LEX_STRING command_name[];
48
45
 
49
46
bool execute_sqlcom_select(Session *session, TableList *all_tables);
50
47
bool insert_select_prepare(Session *session);
70
67
 
71
68
void reset_session_for_next_command(Session *session);
72
69
 
73
 
void create_select_for_variable(Session *session, const char *var_name);
 
70
void create_select_for_variable(const char *var_name);
74
71
 
75
72
void init_update_queries(void);
76
73