summaryrefslogtreecommitdiff
path: root/sql/item.h
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.org>2015-09-21 12:40:07 +0400
committerAlexander Barkov <bar@mariadb.org>2015-09-21 12:40:07 +0400
commitafa17734395f842f728e2539145854d3eb7cd9a8 (patch)
tree618890a8b2b853409ede48a2656def3f4fb4f995 /sql/item.h
parent1956340247eaa14138e2af0b0e2db29cc6bd14e8 (diff)
downloadmariadb-git-afa17734395f842f728e2539145854d3eb7cd9a8.tar.gz
Moving Item_args::arg_count from "public" to "protected".
Diffstat (limited to 'sql/item.h')
-rw-r--r--sql/item.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item.h b/sql/item.h
index 9142b3ef447..50970c0dd9a 100644
--- a/sql/item.h
+++ b/sql/item.h
@@ -3479,6 +3479,7 @@ class Item_args
{
protected:
Item **args, *tmp_arg[2];
+ uint arg_count;
void set_arguments(THD *thd, List<Item> &list);
bool walk_args(Item_processor processor, bool walk_subquery, uchar *arg)
{
@@ -3492,7 +3493,6 @@ protected:
bool transform_args(THD *thd, Item_transformer transformer, uchar *arg);
void propagate_equal_fields(THD *, const Item::Context &, COND_EQUAL *);
public:
- uint arg_count;
Item_args(void)
:args(NULL), arg_count(0)
{ }