~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Monty Taylor
  • Date: 2011-01-26 19:15:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2126.
  • Revision ID: mordred@inaugust.com-20110126191555-nq5nnzyscvngsip2
Turns on -fvisibility=hidden by default. Symbols intended to be used by
plugins need to be marked with DRIZZLED_API.

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);