~ubuntu-branches/ubuntu/quantal/drizzle/quantal

« back to all changes in this revision

Viewing changes to drizzled/function/get_system_var.h

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2011-02-14 12:40:34 UTC
  • mfrom: (1.2.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20110214124034-eih75vcr64qt4db1
Tags: 2011.02.10-0ubuntu1
* New upstream release.
* Incorporated all patches upstream.
* Added unix-socket-protocol package. Disabled it by default.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define DRIZZLED_FUNCTION_GET_SYSTEM_VAR_H
22
22
 
23
23
#include <drizzled/function/func.h>
 
24
#include <drizzled/lex_string.h>
24
25
 
25
26
namespace drizzled
26
27
{
27
28
 
 
29
class sys_var;
 
30
 
28
31
Item *get_system_var(Session *session, sql_var_t var_type, LEX_STRING name,
29
32
                     LEX_STRING component);
30
33
 
35
38
  sys_var *var;
36
39
  sql_var_t var_type;
37
40
  LEX_STRING component;
 
41
 
38
42
public:
39
43
  Item_func_get_system_var(sys_var *var_arg, sql_var_t var_type_arg,
40
44
                           LEX_STRING *component_arg, const char *name_arg,