unknown
3f0cdbc4cd
Fix for bug #28415 "Some ALTER TABLE statements no longer work under LOCK
...
TABLES" and failures of alter_table.test on Windows which occured after
pushing fix for bugs #20662 , #20903 , #24508 , #24738 (various problems
with CREATE TABLE SELECT).
ALTER TABLE statements which were handled using "fast" alter table
optimization were not properly working under LOCK TABLES if table
was transactional (for all table types under Windows).
Code implementing "fast" version of ALTER TABLE tried to open and
lock table using open_ltable() after renaming .FRM files (which
corresponds to renaming tables in normal case) in some cases
(for transactional tables or on Windows). This caused problems
under LOCK TABLES and conflicted with name-lock taken by
ALTER TABLE RENAME on target tables.
This patch solves this issue by using reopen_name_locked_table()
instead of open_ltable().
mysql-test/include/mix1.inc:
Added test for bug #28415 "Some ALTER TABLE statements no longer work
under LOCK TABLES" and minimal coverage for fast ALTER TABLE behaviour
for transactional tables.
mysql-test/r/innodb_mysql.result:
Added test for bug #28415 "Some ALTER TABLE statements no longer work
under LOCK TABLES" and minimal coverage for fast ALTER TABLE behaviour
for transactional tables.
sql/sql_table.cc:
mysql_alter_table():
Fixed handling of transactional tables (and all tables on Windows)
by "fast" ALTER TABLE.
Code implementing "fast" version of ALTER TABLE tried to open and
lock table using open_ltable() after renaming .FRM files (which
corresponds to renaming tables in normal case) for such tables.
This caused problems under LOCK TABLES and conflicted with name-lock
taken by ALTER TABLE RENAME on target tables. We solve this issue by
using reopen_name_locked_table() instead of open_ltable().
2007-05-14 22:38:26 +04:00
..
2007-01-20 14:08:53 +03:00
2007-04-29 00:50:33 +05:00
2007-03-29 12:00:32 +02:00
2007-03-31 20:27:43 +05:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-03-07 07:21:24 +01:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-04-10 18:01:29 +03:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-03-07 07:21:24 +01:00
2007-03-30 04:44:49 +02:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-02-20 12:48:15 +01:00
2007-02-06 14:32:08 +01:00
2007-04-09 17:53:10 +05:00
2007-04-03 14:24:35 +05:00
2007-04-03 11:36:33 +02:00
2007-05-11 21:51:03 +04:00
2007-05-11 21:51:03 +04:00
2007-02-19 17:06:47 +01:00
2007-03-30 10:27:08 +02:00
2007-03-30 04:44:49 +02:00
2007-03-27 12:20:20 +05:00
2007-03-30 12:11:21 +05:00
2007-04-13 10:08:52 +05:00
2007-04-10 16:28:47 +03:00
2007-02-13 01:22:43 +04:00
2007-03-20 17:58:30 +01:00
2007-02-23 18:49:41 +02:00
2007-02-26 11:49:24 +01:00
2007-04-29 13:19:32 +05:00
2007-03-09 17:54:13 +02:00
2007-04-04 13:38:19 +03:00
2007-04-05 20:47:22 +04:00
2007-03-29 09:54:59 -04:00
2007-03-22 00:11:58 +03:00
2007-04-05 15:24:34 +04:00
2007-04-05 15:24:34 +04:00
2007-04-05 15:24:34 +04:00
2007-04-05 20:47:22 +04:00
2007-04-05 15:24:34 +04:00
2007-04-07 23:16:03 +05:00
2007-04-07 23:16:03 +05:00
2007-04-05 20:47:22 +04:00
2007-03-11 00:26:45 +03:00
2007-04-04 21:35:58 +00:00
2007-03-23 12:35:30 +01:00
2007-03-30 04:44:49 +02:00
2007-04-02 17:26:39 +05:00
2007-04-18 13:27:04 +05:00
2007-03-11 00:26:45 +03:00
2007-03-31 02:42:40 +04:00
2007-03-29 13:37:07 +05:00
2007-02-12 14:01:46 -07:00
2007-03-22 11:50:24 +04:00
2007-04-28 20:04:03 +04:00
2007-03-01 19:22:43 -07:00
2007-03-11 00:26:45 +03:00
2007-03-23 22:08:31 +02:00
2007-04-21 00:33:56 +04:00
2007-03-11 00:26:45 +03:00
2007-03-23 22:08:31 +02:00
2007-03-15 17:35:31 +04:00
2007-04-02 11:15:09 +02:00
2007-04-24 14:08:03 +05:00
2007-04-29 13:19:32 +05:00
2007-03-05 10:03:42 +01:00
2007-03-11 00:26:45 +03:00
2007-03-28 08:51:12 +02:00
2007-04-29 05:06:14 +05:00
2007-03-22 01:04:39 +01:00
2007-02-23 21:55:14 +03:00
2007-02-18 15:45:28 +03:00
2007-02-23 23:36:25 +03:00
2007-03-23 20:39:37 +01:00
2007-01-15 13:39:28 +04:00
2007-04-06 14:15:29 +04:00
2007-02-19 14:57:54 +01:00
2007-03-29 12:00:32 +02:00
2007-05-14 22:38:26 +04:00
2007-02-15 15:39:03 +01:00
2007-02-19 13:57:06 +03:00
2007-04-19 21:18:49 +02:00
2007-03-22 23:59:20 +04:00
2007-03-31 02:57:26 +04:00
2007-03-01 14:16:38 +01:00
2007-02-02 10:25:45 +04:00
2007-02-13 01:34:36 -08:00
2007-04-29 18:46:06 +05:00
2007-04-20 11:01:53 +02:00
2007-02-23 13:13:55 +02:00
2007-04-09 11:46:58 +05:00
2007-03-09 13:12:31 +03:00
2007-02-20 21:00:05 +01:00
2007-04-04 21:40:47 +02:00
2007-04-30 23:16:46 +02:00
2007-04-30 23:16:46 +02:00
2007-04-18 16:35:22 +05:00
2007-02-19 15:31:55 +03:00
2007-03-01 14:53:32 +01:00
2007-03-28 17:06:09 +02:00
2007-02-21 19:50:48 +03:00
2007-03-19 11:19:51 +02:00
2007-04-19 21:35:26 +02:00
2007-04-23 13:28:09 +02:00
2007-04-05 22:34:33 +03:00
2007-02-23 22:23:54 +01:00
2007-02-19 13:57:06 +03:00
2007-03-31 17:18:26 +02:00
2007-01-27 03:46:45 +02:00
2007-05-01 06:29:34 +02:00
2007-03-26 02:24:49 -07:00
2007-04-10 17:33:21 +02:00
2007-04-04 15:22:37 +08:00
2007-02-09 21:04:43 +01:00
2007-04-19 06:24:36 +02:00
2007-04-18 16:02:20 +02:00
2007-04-18 16:02:20 +02:00
2007-04-18 21:39:45 +02:00
2007-04-18 16:02:20 +02:00
2007-03-22 07:40:04 +01:00
2007-04-19 10:48:24 +02:00
2007-04-12 07:40:15 +02:00
2006-12-27 11:01:54 +01:00
2007-03-29 12:45:23 +02:00
2007-01-08 14:20:35 +01:00
2007-02-23 13:13:55 +02:00
2007-04-04 14:19:33 +05:00
2007-04-26 13:50:04 +02:00
2007-02-07 09:49:16 +01:00
2007-04-30 11:43:50 +02:00
2007-03-08 15:37:53 +07:00
2007-04-30 11:43:50 +02:00
2007-04-26 21:32:02 +02:00
2007-04-16 14:15:30 +02:00
2007-01-25 10:00:09 +03:00
2007-04-04 16:58:25 +02:00
2007-01-18 13:26:48 -07:00
2007-02-23 13:13:55 +02:00
2007-02-02 10:25:45 +04:00
2007-05-01 13:38:59 +05:00
2007-02-23 13:13:55 +02:00
2007-04-12 14:29:10 +02:00
2007-04-06 12:45:07 +05:00
2007-02-14 14:44:34 +01:00
2007-01-11 14:58:05 -07:00
2007-04-04 14:01:47 +05:00
2007-02-28 18:14:56 -07:00
2007-04-23 13:50:34 -04:00
2007-04-23 13:50:34 -04:00
2007-04-23 13:50:34 -04:00
2007-05-11 17:41:07 +04:00
2007-04-29 13:19:32 +05:00
2007-04-29 13:19:32 +05:00
2007-04-29 13:19:32 +05:00
2007-04-29 13:19:32 +05:00
2007-04-29 13:19:32 +05:00
2007-05-11 17:41:07 +04:00
2007-03-09 18:09:57 +01:00
2007-05-08 12:18:36 +02:00
2007-03-31 03:12:33 +04:00
2007-04-21 00:33:56 +04:00
2007-04-02 11:15:09 +02:00
2007-04-02 11:15:09 +02:00
2007-04-20 14:08:12 +02:00
2007-04-12 14:00:45 +02:00
2007-03-06 18:15:31 +01:00
2007-04-02 11:15:09 +02:00
2007-03-29 15:09:57 +02:00
2007-04-13 23:53:05 -04:00
2007-03-29 21:59:06 +02:00
2007-03-29 21:59:06 +02:00
2007-04-02 11:15:09 +02:00
2007-04-03 11:36:33 +02:00
2007-04-02 13:57:32 +02:00
2007-02-15 20:28:58 +01:00
2007-04-02 11:15:09 +02:00
2007-03-01 11:52:25 +04:00
2007-03-30 04:44:49 +02:00
2007-03-01 18:16:17 +04:00
2007-04-02 11:15:09 +02:00
2007-04-16 17:08:29 +03:00
2007-03-09 12:18:28 -05:00
2007-04-11 07:59:26 +02:00
2007-03-30 10:27:08 +02:00
2007-04-17 08:36:14 +02:00
2007-04-12 16:13:49 +02:00
2007-04-18 23:08:56 +02:00
2007-03-06 18:15:31 +01:00
2007-01-04 04:09:06 +01:00
2007-03-22 13:17:08 +01:00
2007-04-02 11:15:09 +02:00
2007-03-29 21:59:06 +02:00
2007-04-13 12:03:01 +02:00
2007-03-30 10:27:08 +02:00
2007-01-04 04:09:06 +01:00
2007-04-03 07:20:55 +02:00
2007-04-02 11:15:09 +02:00
2007-04-03 16:13:23 +02:00
2007-04-02 11:15:09 +02:00
2007-03-01 14:16:38 +01:00
2007-03-29 15:09:57 +02:00
2007-03-29 15:29:26 +02:00
2007-04-02 11:15:09 +02:00
2007-03-20 08:52:01 +01:00
2007-03-20 08:52:01 +01:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-03-01 14:16:38 +01:00
2007-04-02 11:15:09 +02:00
2007-02-15 20:28:58 +01:00
2007-04-02 11:15:09 +02:00
2007-04-02 11:15:09 +02:00
2007-04-02 11:15:09 +02:00
2007-03-01 14:16:38 +01:00
2007-04-02 11:15:09 +02:00
2007-03-01 14:16:38 +01:00
2007-03-01 14:16:38 +01:00
2007-04-02 11:15:09 +02:00
2007-04-02 11:15:09 +02:00
2007-03-01 14:16:38 +01:00
2007-04-02 11:15:09 +02:00
2007-03-01 14:16:38 +01:00
2007-03-01 14:16:38 +01:00
2007-04-02 11:15:09 +02:00
2007-04-02 11:15:09 +02:00
2007-03-29 15:29:26 +02:00
2007-03-30 04:44:49 +02:00
2007-03-29 16:11:02 +02:00
2007-04-11 09:06:27 +02:00
2007-03-30 04:44:49 +02:00
2007-03-30 04:44:49 +02:00
2007-02-15 20:28:58 +01:00
2007-04-02 11:15:09 +02:00
2007-04-02 11:15:09 +02:00
2007-03-30 04:44:49 +02:00
2007-04-02 11:15:09 +02:00
2007-04-02 11:15:09 +02:00
2007-03-30 04:44:49 +02:00
2007-02-26 09:16:22 +01:00
2007-03-30 10:27:08 +02:00
2007-03-30 10:27:08 +02:00
2007-03-30 04:44:49 +02:00
2007-03-30 14:05:34 +02:00
2007-02-27 20:57:46 +01:00
2007-04-11 15:12:49 -07:00
2007-03-06 16:44:14 +03:00
2007-03-20 00:42:11 +03:00
2007-01-17 18:15:35 -05:00
2007-04-16 19:20:46 +02:00
2007-04-16 16:55:37 +02:00
2007-05-07 10:26:20 +02:00
2007-03-14 17:38:06 -06:00
2007-03-29 17:27:42 +03:00
2007-02-19 13:57:06 +03:00
2007-02-06 16:10:06 -07:00
2007-04-30 15:36:29 -06:00
2007-01-29 19:09:30 +01:00
2007-04-19 12:32:38 +05:00
2007-01-12 23:22:41 +03:00
2007-04-20 17:47:14 -07:00
2007-04-29 18:46:06 +05:00
2007-02-01 18:00:24 +04:00
2007-03-29 09:54:59 -04:00
2007-03-22 23:59:20 +04:00
2007-03-09 13:12:31 +03:00
2007-05-11 21:51:03 +04:00
2007-04-17 12:32:01 +02:00
2007-01-10 14:14:22 +04:00
2007-01-18 15:59:40 +04:00
2007-01-18 17:10:00 +04:00
2007-03-01 18:12:56 +01:00
2007-04-10 16:28:47 +03:00
2007-05-01 13:38:59 +05:00
2007-02-12 14:32:06 +01:00
2007-03-23 01:04:31 +04:00
2007-04-28 20:04:03 +04:00
2007-04-06 16:06:10 +05:00
2007-03-29 09:08:30 +05:00
2007-03-29 10:42:03 -04:00
2007-03-23 01:04:31 +04:00
2007-04-27 12:42:15 +04:00
2007-03-30 04:44:49 +02:00
2007-01-10 14:14:22 +04:00
2007-03-11 00:26:45 +03:00
2007-04-16 14:37:38 -04:00
2007-04-09 18:06:27 +05:00
2007-03-29 17:27:42 +03:00
2007-04-21 00:33:56 +04:00
2007-01-10 16:55:53 +02:00
2007-01-05 20:20:53 -08:00
2007-04-29 18:52:14 +05:00
2007-01-22 13:28:58 +04:00