diff options
author | Alexander Barkov <bar@mariadb.org> | 2015-09-21 12:40:07 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2015-09-21 12:40:07 +0400 |
commit | afa17734395f842f728e2539145854d3eb7cd9a8 (patch) | |
tree | 618890a8b2b853409ede48a2656def3f4fb4f995 /sql/item.h | |
parent | 1956340247eaa14138e2af0b0e2db29cc6bd14e8 (diff) | |
download | mariadb-git-afa17734395f842f728e2539145854d3eb7cd9a8.tar.gz |
Moving Item_args::arg_count from "public" to "protected".
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 2 |
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) { } |