diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-11-28 06:25:14 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-11-28 06:25:14 +0400 |
commit | 590400f743d029f13ddd19e07ccac0153c2a7c1f (patch) | |
tree | 0ad880e15fd676432513a8c782d35ba0cc77d9ef /sql/item_row.cc | |
parent | 6aedbf40e08395533d4f5fc29220b6f358988979 (diff) | |
download | mariadb-git-590400f743d029f13ddd19e07ccac0153c2a7c1f.tar.gz |
MDEV-14517 Cleanup for Item::with_subselect and Item::has_subquery()
Diffstat (limited to 'sql/item_row.cc')
-rw-r--r-- | sql/item_row.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_row.cc b/sql/item_row.cc index 3660c983f87..c7e0f164af9 100644 --- a/sql/item_row.cc +++ b/sql/item_row.cc @@ -64,7 +64,7 @@ bool Item_row::fix_fields(THD *thd, Item **ref) with_sum_func= with_sum_func || item->with_sum_func; with_window_func = with_window_func || item->with_window_func; with_field= with_field || item->with_field; - with_subselect|= item->with_subselect; + m_with_subquery|= item->with_subquery(); } fixed= 1; return FALSE; |