summaryrefslogtreecommitdiff
path: root/sql/item_func.h
diff options
context:
space:
mode:
authorunknown <guilhem@mysql.com>2005-11-10 15:13:12 +0100
committerunknown <guilhem@mysql.com>2005-11-10 15:13:12 +0100
commit4a90d353c2e51917f6c99d2288282289d18c52d1 (patch)
tree724ac82a9a2347f61b3f485aad32572fe5901bd0 /sql/item_func.h
parent26320ebe2f1c56d3376a94a60291c95c0cf0658d (diff)
parent1520558510fd3bf09609395306c5b87bc2b74a3c (diff)
downloadmariadb-git-4a90d353c2e51917f6c99d2288282289d18c52d1.tar.gz
Merge mysql.com:/home/mysql_src/mysql-4.1-gca
into mysql.com:/home/mysql_src/mysql-5.0-release sql/item_func.h: Auto merged sql/item_strfunc.h: Auto merged sql/item_timefunc.h: Auto merged
Diffstat (limited to 'sql/item_func.h')
-rw-r--r--sql/item_func.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/item_func.h b/sql/item_func.h
index 223144a5d51..ed39cb86d3e 100644
--- a/sql/item_func.h
+++ b/sql/item_func.h
@@ -1129,7 +1129,6 @@ class user_var_entry;
class Item_func_set_user_var :public Item_func
{
enum Item_result cached_result_type;
- LEX_STRING name;
user_var_entry *entry;
char buffer[MAX_FIELD_WIDTH];
String value;
@@ -1146,6 +1145,7 @@ class Item_func_set_user_var :public Item_func
public:
+ LEX_STRING name; // keep it public
Item_func_set_user_var(LEX_STRING a,Item *b)
:Item_func(b), cached_result_type(INT_RESULT), name(a)
{}
@@ -1168,10 +1168,10 @@ public:
class Item_func_get_user_var :public Item_func
{
- LEX_STRING name;
user_var_entry *var_entry;
public:
+ LEX_STRING name; // keep it public
Item_func_get_user_var(LEX_STRING a):
Item_func(), name(a) {}
enum Functype functype() const { return GUSERVAR_FUNC; }