~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Lee Bieber
  • Date: 2011-01-08 03:39:25 UTC
  • mfrom: (2062.1.2 build)
  • Revision ID: kalebral@gmail.com-20110108033925-koobar399kwrm4ba
Merge Brian - parser clean up
Merge Marisa - latest doc updates, fix sphinx warnings

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
23
#include "drizzled/definitions.h"
26
24
#include "drizzled/common.h"
27
25
#include "drizzled/lex_string.h"
29
27
#include "drizzled/identifier.h"
30
28
 
31
29
#include "drizzled/error_t.h"
32
 
#include "drizzled/visibility.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