1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fixup: Event_queue_element_for_exec initializer list not supported on gcc-4.1

This commit is contained in:
Vicențiu Ciorbaru
2021-04-21 09:21:24 +03:00
parent 9e6e0eaee2
commit ef2749c90d

View File

@ -33,7 +33,11 @@ struct TABLE;
class Event_queue_element_for_exec
{
public:
Event_queue_element_for_exec() : dbname{NULL, 0}, name{NULL, 0} {};
Event_queue_element_for_exec()
{
dbname.str= NULL; dbname.length= 0;
name.str= NULL; name.length= 0;
};
~Event_queue_element_for_exec();
bool