Commit eadf0f63 authored by Oleksandr Byelkin's avatar Oleksandr Byelkin

fix MDEV-34771 & MDEV-34776

removed duplicated methods
parent 0b7d19d5
......@@ -4706,7 +4706,6 @@ class Item_string_with_introducer :public Item_string
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_string_with_introducer>(thd, this); }
Item *do_build_clone(THD *thd) const override { return get_copy(thd); }
};
......@@ -4721,7 +4720,6 @@ class Item_string_sys :public Item_string
{ }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_string_sys>(thd, this); }
Item *do_build_clone(THD *thd) const override { return get_copy(thd); }
};
......@@ -4738,7 +4736,6 @@ class Item_string_ascii :public Item_string
{ }
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_string_ascii>(thd, this); }
Item *do_build_clone(THD *thd) const override { return get_copy(thd); }
};
......@@ -4777,7 +4774,6 @@ class Item_static_string_func :public Item_string
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_static_string_func>(thd, this); }
Item *do_build_clone(THD *thd) const override { return get_copy(thd); }
};
......@@ -4797,7 +4793,6 @@ class Item_partition_func_safe_string: public Item_string
}
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_partition_func_safe_string>(thd, this); }
Item *do_build_clone(THD *thd) const override { return get_copy(thd); }
};
......@@ -4960,7 +4955,6 @@ class Item_bin_string: public Item_hex_hybrid
void print(String *str, enum_query_type query_type) override;
Item *do_get_copy(THD *thd) const override
{ return get_item_copy<Item_bin_string>(thd, this); }
Item *do_build_clone(THD *thd) const override { return get_copy(thd); }
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment