Commit 93cf67fd authored by Alexander Barkov's avatar Alexander Barkov

Adding the "override" keyword to...

Adding the "override" keyword to Item_char_typecast_func_handler_inet6_to_binary::type_handler_for_create_select()

Clang fails to compile without it.
parent ebeb4f93
...@@ -1230,7 +1230,8 @@ class Item_char_typecast_func_handler_inet6_to_binary: ...@@ -1230,7 +1230,8 @@ class Item_char_typecast_func_handler_inet6_to_binary:
return &type_handler_string; return &type_handler_string;
} }
const Type_handler * const Type_handler *
type_handler_for_create_select(const Item_handled_func *item) const type_handler_for_create_select(const Item_handled_func *item)
const override
{ {
if (item->max_length > MAX_FIELD_VARCHARLENGTH) if (item->max_length > MAX_FIELD_VARCHARLENGTH)
return Type_handler::blob_type_handler(item->max_length); return Type_handler::blob_type_handler(item->max_length);
......
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