summaryrefslogtreecommitdiff
path: root/storage/mroonga
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 /storage/mroonga
parent1956340247eaa14138e2af0b0e2db29cc6bd14e8 (diff)
downloadmariadb-git-afa17734395f842f728e2539145854d3eb7cd9a8.tar.gz
Moving Item_args::arg_count from "public" to "protected".
Diffstat (limited to 'storage/mroonga')
-rw-r--r--storage/mroonga/ha_mroonga.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/mroonga/ha_mroonga.cpp b/storage/mroonga/ha_mroonga.cpp
index a94278e19c2..9266d2d6d82 100644
--- a/storage/mroonga/ha_mroonga.cpp
+++ b/storage/mroonga/ha_mroonga.cpp
@@ -9701,13 +9701,13 @@ void ha_mroonga::check_count_skip(key_part_map start_key_part_map,
if (where->type() == Item::FUNC_ITEM) {
Item_func *func_item = static_cast<Item_func *>(where);
- if (func_item->arg_count == 0) {
+ if (func_item->argument_count() == 0) {
break;
}
target = func_item->key_item();
where = where->next;
if (func_item->arguments()[0] == where) {
- uint n_args = func_item->arg_count;
+ uint n_args = func_item->argument_count();
for (; n_args > 0; --n_args) {
where = where->next;
}