From eadf0f63a284ba4392089d9271eadf1ce2f62f04 Mon Sep 17 00:00:00 2001 From: Oleksandr Byelkin Date: Wed, 21 Aug 2024 15:32:14 +0200 Subject: [PATCH] fix MDEV-34771 & MDEV-34776 removed duplicated methods --- sql/item.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sql/item.h b/sql/item.h index cddef65f4fd..511f86f5dbc 100644 --- a/sql/item.h +++ b/sql/item.h @@ -4706,7 +4706,6 @@ public: } Item *do_get_copy(THD *thd) const override { return get_item_copy(thd, this); } - Item *do_build_clone(THD *thd) const override { return get_copy(thd); } }; @@ -4721,7 +4720,6 @@ public: { } Item *do_get_copy(THD *thd) const override { return get_item_copy(thd, this); } - Item *do_build_clone(THD *thd) const override { return get_copy(thd); } }; @@ -4738,7 +4736,6 @@ public: { } Item *do_get_copy(THD *thd) const override { return get_item_copy(thd, this); } - Item *do_build_clone(THD *thd) const override { return get_copy(thd); } }; @@ -4777,7 +4774,6 @@ public: } Item *do_get_copy(THD *thd) const override { return get_item_copy(thd, this); } - Item *do_build_clone(THD *thd) const override { return get_copy(thd); } }; @@ -4797,7 +4793,6 @@ public: } Item *do_get_copy(THD *thd) const override { return get_item_copy(thd, this); } - Item *do_build_clone(THD *thd) const override { return get_copy(thd); } }; @@ -4960,7 +4955,6 @@ public: void print(String *str, enum_query_type query_type) override; Item *do_get_copy(THD *thd) const override { return get_item_copy(thd, this); } - Item *do_build_clone(THD *thd) const override { return get_copy(thd); } };