unknown
0a91dbcf53
BUG#28971 - ALTER TABLE followed by UPDATE for a CSV table
...
make server crash
UPDATE against CSV table may cause server crash or update a table with wrong
values.
CSV can write only a whole row at once. That means it must read all columns,
that it is not going to update, and write them along with updated columns.
But only limited set of columns was read, those that were needed for the
UPDATE query.
With this fix all columns are read in case we're performing an UPDATE.
mysql-test/r/csv.result:
A test case for BUG#28971.
mysql-test/t/csv.test:
A test case for BUG#28971.
Flush tables is here just to make crash more probable. If we remove it,
fields will have old values from previous query and server won't crash.
storage/csv/ha_tina.cc:
CSV engine is not capable to update single column,
because it can only write a row at once. Thus we must
read all columns if a table is opened for update.
2007-06-15 03:22:40 +05:00
..
2007-05-19 10:49:56 +04:00
2007-06-03 22:52:02 -07:00
2007-03-31 17:29:40 +05:00
2007-05-16 23:01:21 +05:00
2007-05-30 22:33:54 +03:00
2007-05-04 16:10:09 +02:00
2007-03-30 10:27:08 +02:00
2007-05-04 16:10:09 +02:00
2007-03-30 10:27:08 +02:00
2007-05-25 17:24:45 +05:00
2007-02-20 12:48:15 +01:00
2007-05-29 11:16:30 +02: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-23 15:26:16 +04:00
2007-05-23 15:26:16 +04:00
2007-06-15 03:22:40 +05:00
2007-05-30 15:23:47 +05:00
2007-03-27 12:20:20 +05:00
2007-02-19 13:57:06 +03:00
2007-05-31 16:04:58 +04:00
2007-03-28 18:57:30 +05:00
2007-04-13 10:08:52 +05:00
2007-05-16 10:44:59 +02: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-06-01 12:12:06 +04:00
2007-04-10 16:55:48 +03:00
2007-03-05 19:08:41 +02:00
2007-04-04 13:38:19 +03:00
2007-05-26 16:36:38 +02:00
2007-05-26 16:36:38 +02:00
2007-05-26 16:36:38 +02:00
2007-04-05 15:24:34 +04:00
2007-04-05 15:24:34 +04:00
2007-05-29 12:44:44 +02:00
2007-05-26 16:36:38 +02:00
2007-05-26 16:36:38 +02:00
2007-05-26 16:36:38 +02:00
2007-05-26 16:36:38 +02:00
2007-05-26 16:36:38 +02:00
2007-05-26 16:36:38 +02:00
2007-03-08 00:27:42 +03:00
2007-04-17 14:41:16 +03:00
2007-05-04 16:10:09 +02:00
2007-04-04 15:40:40 +02:00
2007-03-23 12:35:30 +01:00
2007-04-02 17:26:39 +05:00
2007-04-18 13:27:04 +05:00
2007-05-30 00:33:12 +04:00
2007-03-05 10:03:42 +01:00
2007-03-05 10:03:42 +01:00
2007-05-22 14:48:49 +02:00
2007-05-18 20:00:49 +05:00
2007-03-22 11:50:24 +04:00
2007-04-28 20:04:03 +04:00
2007-05-31 17:45:22 +03:00
2007-05-16 10:44:59 +02:00
2007-04-21 00:33:56 +04:00
2007-03-06 21:03:32 +03:00
2007-03-15 17:35:31 +04:00
2007-04-02 11:15:09 +02:00
2007-05-23 15:55:36 +04:00
2007-05-24 22:13:49 +02:00
2007-05-24 22:13:49 +02:00
2007-06-01 14:12:16 +02:00
2007-04-29 13:19:32 +05:00
2007-03-28 17:06:09 +02:00
2007-05-31 16:04:58 +04:00
2007-02-28 14:27:19 +04:00
2007-03-22 01:04:39 +01:00
2007-02-18 15:45:28 +03:00
2007-02-23 20:27:13 +03:00
2007-03-23 19:24:03 +01:00
2007-04-06 00:38:57 +04:00
2007-03-20 17:53:55 +04:00
2007-02-19 10:08:27 +01:00
2007-06-01 22:53:50 +05:00
2007-02-19 13:57:06 +03:00
2007-04-18 19:53:28 -06:00
2007-03-22 23:59:20 +04:00
2007-05-11 17:48:20 +05:00
2007-05-16 10:21:39 +04:00
2007-05-28 00:22:44 +05:00
2007-05-04 17:46:13 +03:00
2007-05-31 20:04:54 +02:00
2007-05-22 15:58:30 +03:00
2007-02-23 13:13:55 +02:00
2007-02-24 13:12:20 +03:00
2007-05-31 14:23:45 +05:00
2007-05-18 12:08:07 +05:00
2007-05-09 12:55:05 +02:00
2007-02-27 11:39:29 +01:00
2007-03-09 13:12:31 +03:00
2007-03-23 13:39:16 +01:00
2007-04-04 21:40:47 +02:00
2007-04-04 21:40:47 +02:00
2007-03-02 08:43:45 -08:00
2007-02-24 13:12:20 +03:00
2007-04-30 23:16:46 +02:00
2007-04-30 23:16:46 +02:00
2007-04-30 23:16:46 +02:00
2007-06-07 13:53:23 +05:00
2007-05-30 09:55:38 +03:00
2007-02-19 15:31:55 +03:00
2007-05-04 16:10:09 +02:00
2007-04-16 17:08:29 +03:00
2007-05-22 17:57:14 +03:00
2007-02-21 19:50:48 +03:00
2007-05-19 18:15:08 +02:00
2007-06-01 17:50:24 +04:00
2007-04-05 22:34:33 +03:00
2007-02-23 22:23:54 +01:00
2007-02-22 15:28:42 +03:00
2007-03-21 09:28:26 +01:00
2007-04-02 11:15:09 +02:00
2007-05-28 00:22:44 +05:00
2007-03-26 02:24:49 -07:00
2007-06-05 17:51:30 +02:00
2007-04-05 09:13:20 +02:00
2007-04-16 17:08:29 +03:00
2007-05-08 08:24:21 +02:00
2007-05-14 14:39:37 +02:00
2007-04-18 23:08:56 +02:00
2007-04-18 23:08:56 +02:00
2007-04-19 06:24:36 +02:00
2007-04-18 23:08:56 +02:00
2007-04-18 23:08:56 +02:00
2007-03-22 07:40:04 +01:00
2007-03-09 18:09:57 +01:00
2007-04-19 10:48:24 +02:00
2007-04-19 11:05:25 +02:00
2007-02-26 14:25:59 +01:00
2007-05-02 11:05:48 +02:00
2007-04-16 17:08:29 +03:00
2007-02-23 13:13:55 +02:00
2007-02-28 20:33:59 +01:00
2007-02-26 14:25:59 +01:00
2007-03-27 18:39:11 +05:00
2007-03-27 18:39:11 +05: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-05-04 12:19:06 +02:00
2007-04-16 14:15:30 +02:00
2007-04-04 13:21:49 +02:00
2007-02-23 13:13:55 +02:00
2007-02-23 13:13:55 +02:00
2007-04-29 18:32:59 -07:00
2007-04-11 23:43:58 +02:00
2007-06-01 17:50:24 +04:00
2007-05-17 14:21:35 -06:00
2007-02-26 11:49:24 +01:00
2007-04-04 14:01:47 +05:00
2007-04-26 08:22:05 +02:00
2007-04-15 15:47:27 +02:00
2007-04-25 20:21:55 +02:00
2007-04-25 22:55:19 +02:00
2007-04-25 22:55:19 +02:00
2007-04-23 13:50:34 -04:00
2007-05-06 23:40:16 +05:00
2007-05-18 16:23:46 +05:00
2007-05-21 17:48:29 +05:00
2007-05-15 17:54:11 +04:00
2007-06-05 17:51:30 +02:00
2007-05-24 22:13:49 +02:00
2007-05-24 22:13:49 +02:00
2007-05-08 11:56:47 +02:00
2007-03-31 03:12:33 +04:00
2007-06-01 17:49:01 +04:00
2007-05-04 16:10:09 +02:00
2007-04-12 14:00:45 +02:00
2007-03-06 18:15:31 +01:00
2007-05-04 16:10:09 +02:00
2007-03-20 11:15:15 +01:00
2007-03-16 09:56:57 -04:00
2007-04-17 14:41:16 +03:00
2007-04-03 11:36:33 +02:00
2007-03-31 13:48:33 +02:00
2007-05-30 11:55:56 +02:00
2007-05-04 16:10:09 +02:00
2007-05-04 16:10:09 +02:00
2007-05-04 16:10:09 +02:00
2007-03-01 11:52:25 +04:00
2007-03-29 21:38:03 +02:00
2007-03-01 18:16:17 +04:00
2007-06-01 18:04:25 +04:00
2007-04-16 17:08:29 +03:00
2007-04-16 17:08:29 +03:00
2007-04-16 17:08:29 +03:00
2007-05-04 16:10:09 +02:00
2007-02-20 18:47:47 +01:00
2007-05-30 15:56:05 +02:00
2007-04-17 08:36:14 +02:00
2007-04-12 16:13:49 +02:00
2007-02-20 18:47:47 +01:00
2007-04-18 23:08:56 +02:00
2007-04-26 17:49:50 +02:00
2007-03-22 13:17:08 +01:00
2007-04-28 10:32:14 +08:00
2007-04-28 10:32:14 +08:00
2007-05-04 16:10:09 +02:00
2007-04-03 07:20:55 +02:00
2007-04-03 07:20:55 +02:00
2007-06-01 13:50:59 +02:00
2007-04-16 17:08:29 +03:00
2007-05-04 16:10:09 +02:00
2007-03-01 14:16:38 +01:00
2007-05-04 16:10:09 +02:00
2007-03-01 15:39:57 +01:00
2007-05-24 12:03:55 +02:00
2007-05-04 16:10:09 +02:00
2007-05-04 16:10:09 +02:00
2007-04-25 21:33:18 +02:00
2007-05-04 16:10:09 +02:00
2007-03-31 19:10:25 +02:00
2007-03-29 21:38:03 +02:00
2007-03-01 14:16:38 +01:00
2007-05-04 16:10:09 +02:00
2007-05-28 09:25:40 +02:00
2007-04-16 17:08:29 +03:00
2007-04-16 17:08:29 +03:00
2007-05-04 16:10:09 +02:00
2007-05-04 16:10:09 +02:00
2007-03-01 14:16:38 +01:00
2007-04-16 17:08:29 +03:00
2007-03-01 14:16:38 +01:00
2007-02-20 18:47:47 +01:00
2007-02-20 18:47:47 +01:00
2007-05-30 17:00:48 +02:00
2007-03-01 14:16:38 +01:00
2007-03-01 14:16:38 +01:00
2007-03-01 14:16:38 +01:00
2007-02-20 18:47:47 +01:00
2007-03-29 21:38:03 +02:00
2007-03-29 16:11:02 +02:00
2007-04-11 09:06:27 +02:00
2007-05-04 16:10:09 +02:00
2007-03-29 21:38:03 +02:00
2007-03-29 21:38:03 +02:00
2007-02-27 14:55:00 +01:00
2007-05-21 11:34:39 +05:00
2007-05-21 11:34:39 +05:00
2007-03-16 09:56:57 -04:00
2007-05-25 17:24:45 +05:00
2007-05-31 21:11:01 +05:00
2007-04-11 15:12:49 -07:00
2007-06-14 16:28:33 +05:00
2007-03-20 00:42:11 +03:00
2007-04-21 13:26:44 +05:00
2007-05-18 23:21:34 +05:00
2007-05-07 10:26:20 +02:00
2007-03-21 14:01:39 -04:00
2007-05-18 12:33:12 +04:00
2007-05-18 12:29:06 +04:00
2007-03-29 17:27:42 +03:00
2007-02-19 13:57:06 +03:00
2007-05-18 14:29:24 +02:00
2007-06-03 22:52:02 -07:00
2007-04-27 01:12:09 +03:00
2007-03-05 10:03:42 +01:00
2007-03-05 10:03:42 +01:00
2007-03-05 10:03:42 +01:00
2007-06-02 00:57:25 +02:00
2007-06-03 22:52:02 -07:00
2007-06-04 03:16:17 -07:00
2007-04-25 20:21:55 +02:00
2007-04-04 15:43:03 +02:00
2007-04-04 15:43:03 +02:00
2007-05-19 18:55:38 +02:00
2007-05-19 18:55:38 +02:00
2007-03-22 23:59:20 +04:00
2007-03-09 13:12:31 +03:00
2007-02-26 11:00:17 +01:00
2007-06-04 03:16:17 -07:00
2007-04-17 12:32:01 +02:00
2007-05-29 16:24:12 +05:00
2007-05-18 12:44:03 +02:00
2007-05-21 20:51:31 +02:00
2007-05-31 14:23:45 +05:00
2007-05-28 12:44:59 +04:00
2007-05-21 22:28:50 +05:00
2007-04-02 15:01:19 +05:00
2007-02-23 18:10:36 +01:00
2007-03-29 09:08:30 +05:00
2007-05-18 16:23:46 +05:00
2007-03-22 11:43:23 +04:00
2007-04-23 18:22:33 +04:00
2007-03-29 20:31:09 +02:00
2007-06-03 14:46:09 +04:00
2007-03-01 14:16:38 +01:00
2007-04-12 18:03:26 -04:00
2007-04-27 19:09:39 +02:00
2007-03-29 17:27:42 +03:00
2007-06-01 03:05:25 +05:00
2007-02-24 13:12:20 +03:00
2007-03-23 22:16:32 +02:00
2007-02-23 13:13:55 +02:00
2007-03-02 08:43:45 -08:00
2007-05-04 16:10:09 +02:00
2007-04-29 18:52:14 +05:00
2007-02-26 11:49:24 +01:00
2007-05-23 12:34:47 +05:00