Monty
407e9b78cf
MDEV-24395 Atomic DROP TRIGGER
...
The purpose of this task is to ensure that DROP TRIGGER is atomic.
Description of how atomic drop trigger works:
Logging of DROP TRIGGER
Log the following information:
db
table name
trigger name
xid /* Used to check if query was already logged to binary log */
initial length of the .TRG file
query if there is space for it, if not log a zero length query.
Recovery operations:
- Delete if exists 'database/trigger_name.TRN~'
- If this file existed, it means that we crashed before the trigger
was deleted and there is nothing else to do.
- Get length of .TRG file
- If file length is unchanged, trigger was not dropped. Nothing else to
do.
- Log original query to binary, if it was stored in the ddl log. If it was
not stored (long query string), log the following query to binary log:
use `database` ; DROP TRIGGER IF EXISTS `trigger_name`
/* generated by ddl log */;
Other things:
- Added trigger name and DDL_LOG_STATE to drop_trigger()
Trigger name was added to make the interface more consistent and
more general.
2021-05-19 22:54:13 +02:00
..
2021-05-19 22:54:12 +02:00
2020-04-08 14:51:14 +04:00
2020-10-22 17:08:49 +03:00
2020-03-10 15:09:17 +05:30
2021-05-19 22:54:11 +02:00
2020-08-03 14:44:06 +02:00
2021-04-20 12:30:09 +03:00
2021-03-12 07:02:29 +11:00
2021-05-19 22:27:48 +02:00
2021-04-21 10:21:47 +04:00
2021-05-19 22:54:12 +02:00
2020-07-04 01:44:46 +02:00
2021-05-19 22:54:13 +02:00
2021-05-19 22:54:13 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2020-09-28 15:16:28 -07:00
2020-08-04 17:24:15 +02:00
2020-04-19 17:33:51 +03:00
2020-04-19 17:33:51 +03:00
2020-08-03 14:44:06 +02:00
2021-05-19 22:27:48 +02:00
2021-04-22 08:25:40 +03:00
2021-05-19 22:54:07 +02:00
2021-05-19 22:27:28 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:54:07 +02:00
2020-03-10 19:24:22 +01:00
2020-04-02 00:57:00 +04:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:54:07 +02:00
2021-05-19 22:27:53 +02:00
2020-07-15 14:51:22 +03:00
2020-03-10 15:09:17 +05:30
2021-05-19 22:54:11 +02:00
2021-05-19 22:54:11 +02:00
2020-08-04 17:24:15 +02:00
2020-08-02 11:05:29 +02:00
2020-08-03 13:41:29 +02:00
2021-04-20 12:30:09 +03:00
2019-12-04 15:45:00 +04:00
2021-04-22 15:51:55 +02:00
2020-02-11 08:10:26 +04:00
2020-02-11 08:10:26 +04:00
2021-04-21 14:08:58 +03:00
2019-10-13 09:40:41 +02:00
2020-03-10 19:24:22 +01:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:27:53 +02:00
2020-07-04 01:44:47 +02:00
2020-04-19 17:33:51 +03:00
2021-05-09 23:51:18 +02:00
2020-08-10 17:33:48 +00:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2020-03-10 19:24:23 +01:00
2021-04-20 16:36:56 +02:00
2021-04-20 12:30:09 +03:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:27:53 +02:00
2021-05-19 22:54:12 +02:00
2021-05-05 23:57:11 +03:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:27:53 +02:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:27:53 +02:00
2021-05-19 22:27:28 +02:00
2021-05-19 22:27:53 +02:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:27:53 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:27:53 +02:00
2021-05-19 22:54:07 +02:00
2021-05-19 22:27:53 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:54:07 +02:00
2021-05-13 15:34:25 +03:00
2021-05-19 22:27:48 +02:00
2020-03-31 17:42:34 +02:00
2020-03-10 19:24:22 +01:00
2019-10-18 09:05:27 +03:00
2020-11-03 16:24:47 +02:00
2021-05-19 22:54:12 +02:00
2021-04-08 16:51:36 +10:00
2020-04-19 17:33:51 +03:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2020-11-13 21:54:21 +02:00
2021-05-09 23:51:18 +02:00
2021-03-11 20:09:34 +02:00
2021-03-11 20:09:34 +02:00
2020-11-02 15:48:47 +02:00
2021-04-21 07:25:48 +03:00
2021-03-22 18:10:39 +11:00
2020-02-20 13:35:19 +03:00
2021-05-19 22:27:27 +02:00
2021-05-19 22:27:27 +02:00
2021-05-19 22:27:48 +02:00
2021-04-17 00:05:29 +03:00
2021-02-11 09:26:53 +02:00
2021-02-08 12:16:29 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-02-14 18:30:39 +01:00
2021-05-19 22:27:27 +02:00
2020-05-30 11:04:27 +03:00
2021-05-19 22:27:53 +02:00
2021-02-24 14:15:37 +03:00
2021-04-21 11:45:00 +03:00
2021-05-19 22:27:28 +02:00
2021-05-19 22:27:28 +02:00
2021-05-19 22:27:28 +02:00
2020-03-09 14:53:35 +02:00
2021-04-21 10:21:43 +04:00
2021-03-19 17:37:38 +03:00
2021-05-19 22:54:12 +02:00
2021-04-20 12:30:09 +03:00
2021-05-19 22:27:27 +02:00
2020-04-27 18:19:07 +03:00
2021-04-22 17:52:08 +02:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:54:07 +02:00
2020-03-10 19:24:22 +01:00
2021-04-08 16:51:36 +10:00
2020-08-12 14:39:53 +03:00
2021-05-19 22:27:48 +02:00
2020-07-02 16:59:14 +03:00
2021-03-20 21:17:32 +02:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:27:48 +02:00
2020-03-23 10:50:14 +02:00
2020-12-02 18:29:49 +02:00
2020-03-24 21:00:03 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-18 08:40:19 +03:00
2021-05-18 08:40:19 +03:00
2020-04-24 13:12:46 +03:00
2021-04-08 17:19:51 +05:30
2021-04-08 17:19:51 +05:30
2021-05-18 11:13:45 +03:00
2021-04-16 09:02:00 +05:30
2020-03-10 19:24:23 +01:00
2020-03-10 19:24:23 +01:00
2021-05-19 22:54:12 +02:00
2021-02-14 18:30:39 +01:00
2020-09-27 10:30:23 +04:00
2020-09-27 10:30:23 +04:00
2021-04-27 09:10:47 +03:00
2020-05-23 12:29:10 +03:00
2020-03-10 19:24:22 +01:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-04-21 09:01:01 +03:00
2021-04-08 16:51:36 +10:00
2020-06-12 12:14:14 +02:00
2021-05-19 22:54:07 +02:00
2020-06-03 09:45:39 +03:00
2021-04-21 09:01:01 +03:00
2021-05-19 22:54:12 +02:00
2020-03-16 00:10:50 +02:00
2021-05-19 22:54:07 +02:00
2021-05-05 23:57:11 +03:00
2020-03-10 19:24:22 +01:00
2021-05-19 22:27:53 +02:00
2020-03-10 19:24:22 +01:00
2021-05-19 22:54:12 +02:00
2021-05-19 06:48:36 +02:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:27:28 +02:00
2021-04-20 16:36:56 +02:00
2021-05-19 22:27:48 +02:00
2020-09-24 13:58:29 +10:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:27:27 +02:00
2021-04-26 18:17:50 +03:00
2021-04-26 18:17:50 +03:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:27:48 +02:00
2020-03-12 19:44:52 +02:00
2021-03-20 21:17:32 +02:00
2020-03-10 19:24:23 +01:00
2020-08-14 21:04:25 +04:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:27:28 +02:00
2021-05-19 22:54:12 +02:00
2021-03-18 08:02:48 +01:00
2021-03-18 08:02:48 +01:00
2021-04-21 10:21:44 +04:00
2021-01-06 10:53:00 +01:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2020-09-24 13:58:29 +10:00
2021-05-19 22:54:07 +02:00
2020-05-05 18:13:31 +03:00
2021-04-20 16:36:56 +02:00
2021-05-19 22:27:48 +02:00
2020-03-10 07:20:49 +01:00
2021-05-19 22:54:07 +02:00
2021-05-19 22:54:11 +02:00
2019-10-14 10:29:31 +02:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:27:29 +02:00
2021-05-19 22:27:29 +02:00
2021-05-19 22:27:48 +02:00
2021-04-21 10:21:43 +04:00
2020-03-16 00:10:50 +02:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:27:48 +02:00
2020-03-10 19:24:23 +01:00
2021-05-19 22:27:27 +02:00
2021-05-19 22:54:11 +02:00
2020-10-21 03:09:29 +03:00
2021-03-27 17:37:42 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:11 +02:00
2021-04-21 14:09:14 +03:00
2020-03-10 19:24:22 +01:00
2021-05-19 22:54:11 +02:00
2020-07-13 19:50:07 +04:00
2021-02-15 16:43:15 +01:00
2021-01-24 11:35:55 +01:00
2021-05-19 22:54:11 +02:00
2021-04-21 10:21:46 +04:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2020-03-03 13:50:33 +03:00
2021-03-19 13:09:21 +02:00
2021-05-19 22:27:27 +02:00
2021-02-15 16:43:15 +01:00
2021-05-18 11:13:45 +03:00
2020-08-14 21:04:25 +04:00
2020-06-19 12:03:13 +03:00
2020-08-14 09:14:07 +04:00
2020-03-10 19:24:22 +01:00
2021-04-21 09:01:01 +03:00
2021-05-19 22:54:12 +02:00
2020-03-24 20:47:41 +02:00
2021-05-19 22:54:12 +02:00
2021-02-12 17:44:22 +01:00
2020-08-01 07:43:50 +04:00
2020-08-04 17:24:15 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-04-21 09:01:01 +03:00
2021-04-20 12:30:09 +03:00
2020-04-04 15:52:31 +04:00
2021-05-19 22:54:11 +02:00
2021-02-12 18:17:07 +01:00
2021-05-19 22:27:28 +02:00
2021-03-22 18:10:39 +11:00
2021-05-19 22:54:11 +02:00
2021-05-19 06:48:36 +02:00
2021-02-23 09:25:57 +01:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:27:53 +02:00
2020-08-13 18:18:25 +03:00
2020-07-31 18:09:08 +03:00
2021-05-19 22:54:13 +02:00
2021-05-19 22:54:13 +02:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:54:11 +02:00
2020-06-10 18:09:35 +04:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:27:48 +02:00
2021-04-21 09:01:01 +03:00
2020-01-28 12:29:23 +04:00
2019-10-18 13:15:55 +04:00
2021-05-19 22:54:07 +02:00
2021-05-19 22:54:11 +02:00
2021-05-05 23:57:11 +03:00
2020-10-22 13:27:18 +03:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:27:28 +02:00
2021-05-19 22:54:12 +02:00
2021-05-19 22:27:48 +02:00
2021-05-19 22:27:28 +02:00
2021-05-19 22:54:07 +02:00
2020-11-03 14:49:17 +02:00
2020-04-03 13:01:21 +04:00
2020-04-03 13:01:21 +04:00
2021-05-19 22:54:11 +02:00
2021-05-19 22:27:28 +02:00
2021-04-21 09:01:01 +03:00
2020-03-10 19:24:22 +01:00
2020-03-10 19:24:22 +01:00
2020-05-06 13:50:35 +04:00
2021-02-02 00:19:52 +01:00
2021-02-14 18:30:39 +01:00
2021-02-14 18:30:39 +01:00
2020-07-04 11:53:26 +02:00
2021-02-14 18:30:39 +01:00
2020-06-26 14:44:36 +02:00
2020-06-26 14:44:36 +02:00
2021-02-14 18:30:39 +01:00
2020-12-02 18:29:49 +02:00
2021-05-19 22:27:48 +02:00
2020-04-10 19:05:26 +02:00
2021-03-22 18:10:39 +11:00
2020-06-14 10:13:53 +03:00
2020-06-14 10:13:53 +03:00
2021-05-19 22:27:28 +02:00
2021-03-04 22:50:00 +05:30
2021-02-01 13:49:33 +01:00
2020-01-28 12:29:23 +04:00
2021-04-22 15:51:55 +02:00
2021-05-09 23:51:18 +02:00
2020-08-04 07:55:16 +03:00
2021-05-19 22:54:12 +02:00
2021-01-29 12:14:08 +02:00
2020-03-31 09:59:37 +03:00
2021-02-14 23:18:42 +01:00
2021-02-15 16:43:15 +01:00
2020-11-11 07:37:05 +02:00
2021-01-08 08:44:18 +02:00
2021-03-19 13:09:21 +02:00
2021-03-18 15:07:01 +02:00
2019-12-17 14:46:57 +02:00
2021-05-19 22:27:48 +02:00
2021-05-04 07:37:38 +03:00
2021-02-19 10:37:51 +01:00
2021-01-21 11:41:29 +02:00
2021-05-19 22:27:27 +02:00
2021-02-15 16:43:15 +01:00
2020-01-14 07:33:02 +02:00
2021-05-19 22:54:07 +02:00
2020-08-26 11:30:20 +03:00
2020-12-02 16:16:29 +02:00
2019-10-30 10:45:22 +02:00
2021-04-13 14:58:54 +03:00
2020-09-10 13:18:12 +03:00
2021-05-03 14:34:48 +03:00
2020-08-26 12:02:07 +03:00
2020-08-26 11:30:20 +03:00
2021-04-21 11:45:00 +03:00
2021-04-08 10:11:36 +03:00
2020-03-28 21:20:29 +02:00
2020-01-29 15:06:06 +02:00
2020-12-02 18:29:49 +02:00
2020-03-14 22:45:48 +02:00