diff options
author | Roman Nozdrin <rnozdrin@mariadb.com> | 2022-06-08 15:05:31 +0000 |
---|---|---|
committer | Roman Nozdrin <rnozdrin@mariadb.com> | 2022-06-08 15:07:25 +0000 |
commit | 8331a1c9750e68bed5790a5d1e53a393566424aa (patch) | |
tree | c61f0f694e212ee394c910e02cee2c5f2b84ed0d | |
parent | 8c4a2c8ad40ec31d45bd2a89ace5dc015ef0a7c1 (diff) | |
download | mariadb-git-bb-10.9-mcs.tar.gz |
MCOL-5114 Removing ctor specialization b/c it violates c++20 syntax needed in ColumnStorewbb-10.9-mcs
-rw-r--r-- | sql/item_cmpfunc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index 59caca827c7..f850e4e191e 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -3450,7 +3450,7 @@ protected: Item_equal *item_equal; Item *curr_item; public: - Item_equal_iterator<LI,T>(Item_equal &item_eq) + Item_equal_iterator(Item_equal &item_eq) :LI<T> (item_eq.equal_items) { curr_item= NULL; |