An error occurred fetching the project authors.
- 15 Mar, 2006 1 commit
-
-
konstantin@mysql.com authored
SHOW AUTHORS caused 'Packets out of order' in stored functions: add the corresponding SQLCOM to sp_get_flags_for_command so that it'd return sp-related flags for it. Fix Bug#17403 "Events: packets out of order with show create event" in the same chaneset.
-
- 28 Feb, 2006 1 commit
-
-
andrey@lmy004. authored
- now when the event is created and STARTS is omitted then STARTS is implicitly CURRENT_TIMESTAMP - This CS also fixed incorrect presentation of STARTS/ENDS in I_S.EVENTS (incorporated review changes)
-
- 16 Feb, 2006 2 commits
-
-
andrey@lmy004. authored
this problem affects only debug builds
-
andrey@lmy004. authored
(pre-push)
-
- 15 Feb, 2006 2 commits
-
-
andrey@lmy004. authored
WL#1034 - This changeset also changes the executor so its quite more stable now. Stressing test case added that executes ~800 events per second and dropping hundreds of events at once using DROP DATABASE. (with fixes after review of JimW) (with fixes after review of Serg)
-
andrey@lmy004. authored
WL#1034 (Internal CRON) (post-post-review updates)
-
- 14 Feb, 2006 2 commits
-
-
andrey@lmy004. authored
-
andrey@lmy004. authored
- fix for bug#16423 (Events: SHOW CREATE EVENT doesn't work) - this Changeset commits makes CREATE/UPDATE/DELETE EVENT real DDL statements by committing the currently open transaction before they are executed. - this Changeset also fixes a trailing space problem since the very early days of the internal cron - adds sophisticated checking of whether mysql.event was tampered accidentally or with purpose by an user. - adds a lot of inline function documentation - documents everything left uncodumented - INTERVAL_XXXX to XXX in I_S.EVENTS.INTERVAL_FIELD WL#1034 (Internal CRON)
-
- 10 Feb, 2006 1 commit
-
-
andrey@lmy004. authored
Events were executed with all privileges possible on planet Earth :( WL#1034
-
- 09 Feb, 2006 1 commit
-
-
andrey@lmy004. authored
WL #1034
-
- 07 Feb, 2006 1 commit
-
-
andrey@lmy004. authored
WL#1034 (Internal CRON) (with post-review fix)
-
- 30 Jan, 2006 2 commits
-
-
andrey@lmy004. authored
WL#1034 (Internal CRON)
-
andrey@lmy004. authored
post-review change - use pointer instead of copy on the stack. WL#1034 (Internal CRON) This patch adds INFORMATION_SCHEMA.EVENTS table with the following format: EVENT_CATALOG - MYSQL_TYPE_STRING (Always NULL) EVENT_SCHEMA - MYSQL_TYPE_STRING (the database) EVENT_NAME - MYSQL_TYPE_STRING (the name) DEFINER - MYSQL_TYPE_STRING (user@host) EVENT_BODY - MYSQL_TYPE_STRING (the body from mysql.event) EVENT_TYPE - MYSQL_TYPE_STRING ("ONE TIME" | "RECURRING") EXECUTE_AT - MYSQL_TYPE_TIMESTAMP (set for "ONE TIME" otherwise NULL) INTERVAL_VALUE - MYSQL_TYPE_LONG (set for RECURRING otherwise NULL) INTERVAL_FIELD - MYSQL_TYPE_STRING (set for RECURRING otherwise NULL) SQL_MODE - MYSQL_TYPE_STRING (for now NULL) STARTS - MYSQL_TYPE_TIMESTAMP (starts from mysql.event) ENDS - MYSQL_TYPE_TIMESTAMP (ends from mysql.event) STATUS - MYSQL_TYPE_STRING (ENABLED | DISABLED) ON_COMPLETION - MYSQL_TYPE_STRING (NOT PRESERVE | PRESERVE) CREATED - MYSQL_TYPE_TIMESTAMP LAST_ALTERED - MYSQL_TYPE_TIMESTAMP LAST_EXECUTED - MYSQL_TYPE_TIMESTAMP EVENT_COMMENT - MYSQL_TYPE_STRING SQL_MODE is NULL for now, because the value is still not stored in mysql.event . Support will be added as a fix for another bug. This patch also adds SHOW [FULL] EVENTS [FROM db] [LIKE pattern] 1. SHOW EVENTS shows always only the events on the same user, because the PK of mysql.event is (definer, db, name) several users may have event with the same name -> no information disclosure. 2. SHOW FULL EVENTS - shows the events (in the current db as SHOW EVENTS) of all users. The user has to have PROCESS privilege, if not then SHOW FULL EVENTS behave like SHOW EVENTS. 3. If [FROM db] is specified then this db is considered. 4. Event names can be filtered with LIKE pattern. SHOW EVENTS returns table with the following columns, which are subset of the data which is returned by SELECT * FROM I_S.EVENTS Db Name Definer Type Execute at Interval value Interval field Starts Ends Status
-
- 26 Jan, 2006 2 commits
-
-
andrey@lmy004. authored
WL#1034 (Internal CRON) (not interesting for the Changelog)
-
andrey@lmy004. authored
WL #1034 (Internal CRON)
-
- 24 Jan, 2006 1 commit
-
-
andrey@lmy004. authored
WL#1034 (Internal CRON)
-
- 20 Jan, 2006 2 commits
-
-
andrey@lmy004. authored
WL#1034 (Internal CRON)
-
andrey@lmy004. authored
WL #1034 (Internal CRON)
-
- 11 Jan, 2006 2 commits
-
-
andrey@lmy004. authored
- add a bit more debug messages - disable events.test for now due to a bug
-
andrey@lmy004. authored
- various fixes of test cases (hopefully the last pre-push update before the push)
-
- 10 Jan, 2006 1 commit
-
-
andrey@lmy004. authored
- fixed test results - fixed bug caught by information_schema.test . Bison temporal variables are very nice but extremely error-prone (Count one more time just to be sure).
-
- 15 Dec, 2005 1 commit
-
-
andrey@lmy004. authored
- fix EVENT_ACL problem that GRANT ALL on some_db.* to someone@somewhere did not get to mysql.db - fix crash when the following is executed : CREATE EVENT P() CREATE EVENT E ON SCHEDULER 1 SECOND DO ROLLBACK; (creation works as well as calling P() which creates the event).
-
- 02 Dec, 2005 1 commit
-
-
andrey@lmy004. authored
-