~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Lee Bieber
  • Date: 2011-01-28 21:08:33 UTC
  • mfrom: (2119.4.3 try-visibility)
  • Revision ID: kalebral@gmail.com-20110128210833-nro17n81etdpcylm
Merge Monty - Enable -fvisibility=hidden

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
 
23
25
#include "drizzled/definitions.h"
24
26
#include "drizzled/common.h"
25
27
#include "drizzled/lex_string.h"
27
29
#include "drizzled/identifier.h"
28
30
 
29
31
#include "drizzled/error_t.h"
 
32
#include "drizzled/visibility.h"
30
33
 
31
34
namespace drizzled
32
35
{
41
44
 
42
45
typedef struct charset_info_st CHARSET_INFO;
43
46
 
44
 
extern const LEX_STRING command_name[];
 
47
DRIZZLED_API const std::string &getCommandName(const enum_server_command& command);
45
48
 
46
49
bool execute_sqlcom_select(Session *session, TableList *all_tables);
47
50
bool insert_select_prepare(Session *session);