summaryrefslogtreecommitdiff
path: root/sql/opt_table_elimination.cc
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.com>2018-06-05 11:56:19 +0400
committerAlexander Barkov <bar@mariadb.com>2018-06-05 11:56:19 +0400
commitf4dfc609cf89001e948566336f8f2b93ee147723 (patch)
tree62a44a1dd397b8ae4b405e2c75c00593ea8a62d2 /sql/opt_table_elimination.cc
parentab297744b7318645159cd5f9ec26378473cecf52 (diff)
downloadmariadb-git-f4dfc609cf89001e948566336f8f2b93ee147723.tar.gz
MDEV-16388 Replace member Item::fixed to virtual method is_fixed()
Diffstat (limited to 'sql/opt_table_elimination.cc')
-rw-r--r--sql/opt_table_elimination.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/opt_table_elimination.cc b/sql/opt_table_elimination.cc
index ef9b07cca47..4b22aeaf871 100644
--- a/sql/opt_table_elimination.cc
+++ b/sql/opt_table_elimination.cc
@@ -622,7 +622,7 @@ void eliminate_tables(JOIN *join)
List_iterator<Item> val_it(thd->lex->value_list);
while ((item= val_it++))
{
- DBUG_ASSERT(item->fixed);
+ DBUG_ASSERT(item->is_fixed());
used_tables |= item->used_tables();
}
}