An error occurred fetching the project authors.
- 25 Sep, 2006 1 commit
-
-
andrey@example.com authored
ALTER EVENT in stored procedure body led to a crash during the procedure call. Affected was only ALTER EVENT which changed the interval of the event. No problems with AT, STARTS, ENDS and so on.
-
- 07 Sep, 2006 1 commit
-
-
andrey@example.com authored
-
- 01 Sep, 2006 1 commit
-
-
andrey@example.com authored
This is a post-review patch. Fixes the typelib implementation, available only in 5.1.11. --event-scheduler cmdline : DISABLED | ON | OFF | 0 | 1 DISABLED - makes the scheduler unavailable during the server run (ON|1)- When the server is started the scheduler will be started. It can be stopped and restarted by setting appropriate values to GLOBAL event_scheduler (OFF|0)- When the server is started, the scheduler won't be started. It can be started and again stopped by setting appropriate values to GLOBAL event_scheduler. _DEFAULT_ value The GLOBAL variable event_scheduler can have the following values: OFF | ON | 0 | 1 DISABLED is not possible and every attempt will end with an error that it's not a valid value for the variable. OFF | 0 - This is the pre-5.1.11 behavior - The scheduler stops, if not already stopped, and can be started again by setting the value of the variable to ON|1. ON | 1 - This is the pre-5.1.11 behavior - The scheduler starts, if not already started, and can be stopped again by setting the value of the variable to OFF|0.
-
- 15 Aug, 2006 1 commit
-
-
stewart@willster.(none) authored
ignore the ndb injector thread when selecting from INFORMATION_SCHEMA.PROCESSLIST
-
- 14 Aug, 2006 2 commits
-
-
andrey@example.com authored
-
kostja@bodhi.local authored
-
- 17 Jul, 2006 1 commit
-
-
andrey@lmy004. authored
Small updates before patch submit.
-
- 10 Jul, 2006 1 commit
-
-
andrey@lmy004. authored
This patch introduces specialized Event data objects Event_basic as parent. Event_queue_element used for queue storage Event_timed used for SHOW EVENTS/ I_S.EVENTS / SHOW CREATE EVENT Event_job_data using during execution. Methods were moved out of Event_timed to other classes. This patch also introduces Events::LOCK_event_metadata. This patch gives new implementation of Events::dump_internal_status(). Now both the Event_scheduler and Event_queue return information during their ::dump_internal_status(). Shortened a bit the runtime for executing events test cases.
-
- 04 Jul, 2006 1 commit
-
-
andrey@lmy004. authored
Cut Nr. 8. All tests pass. Separated Event_scheduler into Event_queue and Event_scheduler. Added new Event_scheduler_ng which is the new scheduler and is used system-wide. Will be moved to the event_scheduler.cc in the future. Using Event_timed in Event_queue as well as cloned during execution. Next step is to have Event_worker_data which will be used during execution and will take ::compile()/::execute() out of Event_timed.
-
- 29 Jun, 2006 1 commit
-
-
andrey@lmy004. authored
Parsing of CREATE/ALTER EVENT statement was crashing because of early initialization done during parsing, instead in the after parsing phase. Moreover, we don't want SUBqueries in CREATE/ALTER EVENT therefore we disable them, though it is possible to make them work. It can be emulated inside SP with a cursor and SP variable (CREATE/ALTER EVENT can still accept variables as values).
-
- 27 Jun, 2006 1 commit
-
-
andrey@lmy004. authored
the parsing. Next step will be to refactor of usage of Event_timed during Events::create_event() and Events::update_event(). Disallow: - CREATE EVENT ... DO CREATE EVENT ...; - ALTER EVENT ... DO CREATE EVENT ...; - CREATE EVENT ... DO ALTER EVENT DO ....; - CREATE PROCEDURE ... BEGIN CREATE EVENT ... END| Allowed: - CREATE EVENT ... DO DROP EVENT yyy; - CREATE EVENT ... DO ALTER EVENT yyy; (the nested ALTER EVENT can have anything but DO clause) - ALTER EVENT ... DO ALTER EVENT yyy; (the nested ALTER EVENT can have anything but DO clause) - ALTER EVENT ... DO DROP EVENT yyy; - CREATE PROCEDURE ... BEGIN ALTER EVENT ... END| (the nested ALTER EVENT can have anything but DO clause) - CREATE PROCEDURE ... BEGIN DROP EVENT ... END|
-
- 23 Jun, 2006 1 commit
-
-
andrey@lmy004. authored
alter event rename". ALTER EVENT ... RENAME statement hasn't checked privileges for the target database. It also caused server crashes when target database was not specified explicitly and there was no current database. This fix adds missing privilege check and check for the case when target database is not specified explicitly or implicitly.
-
- 22 May, 2006 1 commit
-
-
andrey@lmy004. authored
- Scheduler is either initialized at server start or never. Starting & stopping is now suspending & resuming. - The scheduler has clear OO interface - Now all calls to the scheduler are synchronous - GLOBAL event_scheduler uses thd::sys_var_tmp (see set_var.cc) - External API is encapsulated into class Events - Includes fixes for all comments of Kostja's review of 19.05.2005 Starting to merge into 5.1-release (5.1.10) and push
-
- 28 Mar, 2006 1 commit
-
-
andrey@lmy004. authored
-
- 24 Mar, 2006 1 commit
-
-
andrey@lmy004. authored
-
- 17 Mar, 2006 1 commit
-
-
andrey@lmy004. authored
-
- 16 Mar, 2006 2 commits
-
-
andrey@lmy004. authored
-
andrey@lmy004. authored
(one patch)
-
- 03 Mar, 2006 1 commit
-
-
andrey@lmy004. authored
WL#1034 (Internal CRON) timestamps does not support > y2038
-
- 21 Feb, 2006 1 commit
-
-
andrey@lmy004. authored
post-review fixes
-
- 20 Feb, 2006 1 commit
-
-
andrey@lmy004. authored
WL#1032 sql_mode setting was disregarded during create/alter event and wasn't set during event execution. (post-review small fixes)
-