Michael Widenius
c4bb7cd6dc
Fix for MDEV-5589: "Discrepancy in binlog on half-failed CREATE OR REPLACE"
...
Now if CREATE OR REPLACE fails but we have deleted a table already, we will generate a DROP TABLE in the binary log.
This fixes this issue.
In addition, for a failing CREATE OR REPLACE TABLE ... SELECT we don't generate a log of all the inserted rows, only the DROP TABLE.
I added code for not logging DROP TEMPORARY TABLE for tables where the CREATE TABLE was not logged. This code will be activated in 10.1
by removing the code protected by DONT_LOG_DROP_OF_TEMPORARY_TABLES.
mysql-test/suite/rpl/r/create_or_replace_mix.result:
More test cases
mysql-test/suite/rpl/r/create_or_replace_row.result:
More test cases
mysql-test/suite/rpl/r/create_or_replace_statement.result:
More test cases
mysql-test/suite/rpl/t/create_or_replace.inc:
More test cases
sql/log.cc:
Added binlog_reset_cache() to clear the binary log.
sql/log.h:
Added prototype
sql/sql_insert.cc:
If CREATE OR REPLACE TABLE ... SELECT fails:
- Don't log anything if nothing changed
- If table was deleted, log a DROP TABLE.
Remember if we table creation of temporary tables was logged.
sql/sql_table.cc:
Added log_drop_table()
Remember if we table creation of temporary tables was logged.
If CREATE OR REPLACE TABLE ... SELECT fails and a table was deleted, log a DROP TABLE.
sql/sql_table.h:
Added prototype
sql/sql_truncate.cc:
Remember if we table creation of temporary tables was logged.
sql/table.h:
Added table_creation_was_logged
2014-03-20 00:59:13 +02:00
..
2014-03-20 00:59:13 +02:00
2014-03-20 00:59:13 +02:00
2014-03-20 00:59:13 +02:00
2013-08-27 19:18:04 +03:00
2013-07-21 19:24:20 +02:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:15:12 +01:00
2013-07-05 21:42:06 +04:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:15:12 +01:00
2012-02-09 23:28:33 +05:30
2010-12-19 18:07:28 +01:00
2012-04-23 11:51:19 +03:00
2013-12-09 12:37:45 +01:00
2012-09-18 15:14:19 +03:00
2013-04-17 15:17:01 +02:00
2011-02-23 10:31:37 +01:00
2012-09-27 20:09:46 +02:00
2010-12-19 18:15:12 +01:00
2011-12-01 00:54:54 +00:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:15:12 +01:00
2011-12-15 22:07:58 +01:00
2012-11-20 12:37:23 +00:00
2011-12-15 22:07:58 +01:00
2011-04-14 00:18:08 +04:00
2011-02-20 18:51:43 +02:00
2011-12-15 22:07:58 +01:00
2012-10-16 13:04:42 +02:00
2011-05-03 14:01:11 +02:00
2013-05-08 13:36:17 +04:00
2012-09-27 20:09:46 +02:00
2011-05-03 14:01:11 +02:00
2013-03-26 10:35:34 +01:00
2013-06-06 17:51:28 +02:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:07:28 +01:00
2013-04-17 15:17:01 +02:00
2013-04-17 15:17:01 +02:00
2011-11-24 14:51:18 +00:00
2013-05-03 01:54:47 +03:00
2010-12-19 18:07:28 +01:00
2013-09-20 13:12:53 +04:00
2014-02-03 15:22:39 +01:00
2010-12-19 18:07:28 +01:00
2013-11-03 16:31:52 +01:00
2014-02-06 16:27:55 +01:00
2012-10-03 01:44:54 +03:00
2010-12-19 18:07:28 +01:00
2013-10-29 15:08:44 +01:00
2013-06-15 19:09:31 +02:00
2013-07-21 16:39:19 +02:00
2010-12-19 18:07:28 +01:00
2013-07-05 19:57:48 +04:00
2010-12-19 18:07:28 +01:00
2013-04-09 15:34:17 +02:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:15:12 +01:00
2012-01-16 09:17:40 +00:00
2012-01-16 09:17:40 +00:00
2013-05-03 01:54:47 +03:00
2013-05-03 01:54:47 +03:00
2011-02-15 11:59:12 +00:00
2012-10-03 01:44:54 +03:00
2013-05-03 01:54:47 +03:00
2013-05-03 01:54:47 +03:00
2012-10-03 01:44:54 +03:00
2012-10-03 01:44:54 +03:00
2011-10-19 21:45:18 +02:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:07:28 +01:00
2012-10-17 15:43:56 +03:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:07:28 +01:00
2014-02-11 14:21:48 +01:00
2013-11-21 14:42:25 +01:00
2014-02-10 15:12:17 +01:00
2014-02-07 20:24:39 +01:00
2014-02-10 12:53:04 +01:00
2013-05-28 13:28:31 +02:00
2013-05-28 15:39:56 +02:00
2013-05-28 15:39:56 +02:00
2013-08-22 12:36:42 +02:00
2013-05-29 11:41:25 +02:00
2013-08-16 15:10:25 +02:00
2014-02-10 15:12:17 +01:00
2013-06-07 08:43:21 +02:00
2014-02-10 15:12:17 +01:00
2014-02-07 20:24:39 +01:00
2013-05-28 15:39:56 +02:00
2013-05-28 13:28:31 +02:00
2011-02-04 22:07:48 +03:00
2013-05-03 01:54:47 +03:00
2010-12-19 18:15:12 +01:00
2012-10-03 01:44:54 +03:00
2011-05-28 05:11:32 +03:00
2013-04-15 10:55:27 +02:00
2013-05-03 01:54:47 +03:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2013-05-03 01:54:47 +03:00
2013-10-14 00:24:05 +03:00
2011-12-15 22:07:58 +01:00
2010-12-19 18:07:28 +01:00
2011-05-08 13:24:06 +03:00
2010-12-19 18:07:28 +01:00
2013-04-17 15:17:01 +02:00
2013-12-09 12:37:45 +01:00
2013-04-17 15:17:01 +02:00
2012-02-06 22:55:17 +01:00
2012-02-09 23:28:33 +05:30
2010-12-19 18:15:12 +01:00
2011-09-29 14:47:27 +05:30
2011-07-02 22:08:51 +02:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:07:28 +01:00
2012-05-21 15:30:25 +02:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2013-05-03 01:54:47 +03:00
2013-03-27 11:59:40 +05:30
2013-04-17 15:17:01 +02:00
2012-09-27 20:09:46 +02:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2013-05-03 01:54:47 +03:00
2012-09-22 15:30:24 +03:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2013-09-10 16:12:25 +08:00
2014-01-22 15:29:36 +01:00
2012-03-28 01:04:46 +02:00
2010-12-19 18:07:28 +01:00
2014-03-04 14:32:42 +01:00
2010-12-19 18:07:28 +01:00
2014-02-01 00:54:03 +01:00
2014-02-06 16:27:23 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:15:12 +01:00
2012-09-27 20:09:46 +02:00
2010-12-19 18:07:28 +01:00
2014-01-22 15:29:36 +01:00
2014-02-03 15:22:39 +01:00
2013-12-16 13:02:21 +01:00
2013-12-16 13:02:21 +01:00
2010-04-20 10:10:43 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2012-02-09 23:28:33 +05:30
2013-07-05 19:57:48 +04:00
2010-12-19 18:07:28 +01:00
2012-02-09 23:28:33 +05:30
2013-11-04 21:37:29 +01:00
2010-12-19 18:07:28 +01:00
2013-12-16 13:02:21 +01:00
2013-12-16 13:02:21 +01:00
2013-12-16 13:02:21 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2014-03-04 08:48:32 +01:00
2011-07-02 22:12:12 +02:00
2013-05-03 01:54:47 +03:00
2014-01-08 11:00:44 +01:00
2014-02-10 12:53:04 +01:00
2012-04-20 22:25:59 +01:00
2014-03-07 12:02:09 +01:00
2013-09-27 16:58:49 +04:00
2013-09-27 16:58:49 +04:00
2013-09-27 16:58:49 +04:00
2013-09-27 16:58:49 +04:00
2013-07-21 16:39:19 +02:00
2012-01-24 18:07:35 +02:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:15:12 +01:00
2013-12-09 12:37:45 +01:00
2011-12-12 23:58:40 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2011-05-19 16:45:45 +01:00
2012-09-27 20:09:46 +02:00
2010-12-19 18:07:28 +01:00
2012-12-04 18:14:01 +05:30
2010-12-19 18:07:28 +01:00
2013-04-17 15:17:01 +02:00
2014-02-01 00:54:03 +01:00
2012-02-09 13:10:47 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2013-12-09 12:37:45 +01:00
2013-12-09 12:37:45 +01:00
2013-05-03 01:54:47 +03:00
2013-05-03 01:54:47 +03:00
2013-02-14 17:03:49 +01:00
2013-12-09 12:37:45 +01:00
2012-09-27 20:09:46 +02:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2013-07-21 16:39:19 +02:00
2013-12-09 12:37:45 +01:00
2011-12-15 22:07:58 +01:00
2014-02-22 03:11:56 +02:00
2010-12-19 18:07:28 +01:00
2014-02-03 15:22:39 +01:00
2013-12-16 13:02:21 +01:00
2012-01-16 20:16:35 +01:00
2010-12-19 18:07:28 +01:00
2013-04-17 15:17:01 +02:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2013-05-03 01:54:47 +03:00
2013-12-16 13:02:21 +01:00
2011-12-15 22:07:58 +01:00
2013-05-03 01:54:47 +03:00
2013-12-09 12:37:45 +01:00
2014-02-05 19:01:59 +02:00
2014-02-05 19:01:59 +02:00
2012-10-01 02:30:44 +03:00
2012-02-24 16:07:43 +00:00
2013-12-16 13:02:21 +01:00
2012-11-20 12:37:23 +00:00
2010-12-19 18:07:28 +01:00
2011-03-24 10:52:40 +00:00
2011-03-24 10:52:40 +00:00
2013-09-27 01:24:16 +05:30
2014-02-05 19:01:59 +02:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:15:12 +01:00
2013-07-05 21:42:06 +04:00
2013-07-13 22:29:30 +02:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2013-05-03 01:54:47 +03:00
2013-05-03 01:54:47 +03:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2014-03-19 11:00:56 +02:00
2014-03-19 11:00:56 +02:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2013-02-19 01:58:57 +05:30
2010-12-19 18:07:28 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:15:12 +01:00
2013-04-09 23:28:21 +02:00
2013-04-09 23:28:21 +02:00
2010-12-19 18:07:28 +01:00
2011-05-06 00:50:31 +01:00
2010-12-19 18:15:12 +01:00
2013-07-05 19:57:48 +04:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2012-02-28 14:02:27 +05:30
2011-12-15 22:07:58 +01:00
2013-05-03 01:54:47 +03:00
2012-10-03 01:44:54 +03:00
2013-05-03 01:54:47 +03:00
2010-12-19 18:07:28 +01:00
2013-05-03 01:54:47 +03:00
2013-05-03 01:54:47 +03:00
2013-12-09 12:37:45 +01:00
2014-01-14 19:00:38 +01:00
2011-03-16 16:38:30 +00:00
2010-12-19 18:07:28 +01:00
2013-05-07 13:05:09 +02:00
2013-09-20 22:30:19 +03:00
2011-10-19 21:45:18 +02:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:07:28 +01:00
2012-03-16 17:47:31 +01:00
2014-01-22 15:29:36 +01:00
2013-04-17 15:17:01 +02:00
2012-09-27 20:09:46 +02:00
2013-05-03 01:54:47 +03:00
2014-02-03 15:22:39 +01:00
2013-05-03 01:54:47 +03:00
2013-04-17 15:17:01 +02:00
2010-12-19 18:15:12 +01:00
2013-12-16 13:02:21 +01:00
2013-09-27 01:24:16 +05:30
2013-05-03 12:10:16 +02:00
2010-12-19 18:15:12 +01:00
2014-02-05 19:01:59 +02:00
2011-07-02 22:12:12 +02:00
2012-10-01 02:30:44 +03:00
2014-02-05 19:01:59 +02:00
2013-12-16 13:02:21 +01:00
2013-04-17 15:17:01 +02:00
2013-07-05 19:57:48 +04:00
2012-03-12 23:15:01 +00:00
2013-09-27 01:24:16 +05:30
2010-12-19 18:07:28 +01:00
2012-03-28 01:04:46 +02:00
2011-12-15 22:07:58 +01:00
2013-06-06 17:51:28 +02:00
2013-08-07 13:18:26 -07:00
2014-01-27 12:10:53 +01:00
2011-10-19 21:45:18 +02:00
2013-05-22 17:36:48 +02:00
2013-04-09 23:27:29 +02:00
2014-02-05 19:01:59 +02:00
2013-07-05 19:57:48 +04:00
2013-12-06 19:02:55 +04:00
2013-07-10 11:49:17 +04:00
2013-11-14 15:08:29 +01:00
2011-10-19 21:45:18 +02:00
2011-10-19 21:45:18 +02:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:15:12 +01:00
2012-08-09 17:22:00 +02:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:07:28 +01:00
2010-12-19 18:15:12 +01:00
2013-05-03 01:54:47 +03:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:07:28 +01:00
2013-04-17 15:17:01 +02:00
2011-05-28 05:11:32 +03:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:15:12 +01:00
2010-12-19 18:07:28 +01:00
2013-04-09 23:28:21 +02:00