Is it possible to create mysql event that would start every weekend. It should START EVERY Friday 7pm, execute in interval of 1 HOUR and end EVERY MONDAY AT 5am. (Query updates a table that cron process reads every min)
It seems that mysql events "ENDS" is only absolute time. Also, it does not seem to be possible to create EVENT that would DISABLE or DROP another EVENT.
So, it looks like mysql events limitation and I likely have to combine mysql event and cron process to handle "ENDS".
Any help would be appreciated.