Skip to content

Commit

Permalink
Fixup: Event_queue_element_for_exec initializer list not supported on…
Browse files Browse the repository at this point in the history
… gcc-4.1
  • Loading branch information
cvicentiu committed Apr 21, 2021
1 parent 9e6e0ea commit ef2749c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sql/event_data_objects.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ef2749c

Please sign in to comment.