1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Merge branch '10.6' into 10.11

This commit is contained in:
Sergei Golubchik
2024-04-22 11:00:03 +02:00
418 changed files with 7074 additions and 2930 deletions

View File

@@ -3516,13 +3516,11 @@ template <template<class> class LI, typename T> class Item_equal_iterator
{
protected:
Item_equal *item_equal;
Item *curr_item;
Item *curr_item= nullptr;
public:
Item_equal_iterator(Item_equal &item_eq)
:LI<T> (item_eq.equal_items)
:LI<T> (item_eq.equal_items), item_equal(&item_eq)
{
curr_item= NULL;
item_equal= &item_eq;
if (item_eq.with_const)
{
LI<T> *list_it= this;