Bug #59382 | mysql import crashes on an innodb insert | ||
---|---|---|---|
Submitted: | 9 Jan 2011 16:05 | Modified: | 9 Feb 2011 16:51 |
Reporter: | Jason Bronson | Email Updates: | |
Status: | No Feedback | Impact on me: | |
Category: | MySQL Server: InnoDB storage engine | Severity: | S2 (Serious) |
Version: | Ver 14.14 Distrib 5.1.32, for unknown-li | OS: | Linux (ubuntu 10.04 Server) |
Assigned to: | CPU Architecture: | Any |
[9 Jan 2011 16:05]
Jason Bronson
[9 Jan 2011 16:17]
Valeriy Kravchuk
Please, check if the same problem happens with a recent version, 5.1.54. I do not see this crash: macbook-pro:5.1 openxs$ bin/mysql -uroot test Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 5 Server version: 5.1.55-debug Source distribution Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to modify and redistribute it under the GPL v2 license Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> DROP TABLE IF EXISTS `connection`; Query OK, 0 rows affected, 1 warning (0.41 sec) mysql> SET @saved_cs_client = @@character_set_client; Query OK, 0 rows affected (0.00 sec) mysql> SET character_set_client = utf8; Query OK, 0 rows affected (0.00 sec) mysql> CREATE TABLE `connection` ( -> `connection_id` double NOT NULL auto_increment, -> `illness_id` double NOT NULL, -> `medicine_id` double NOT NULL, -> `inserted_by` varchar(200) NOT NULL, -> `updated_by` varchar(200) NOT NULL, -> `insert_record_ts` datetime NOT NULL, -> `update_record_ts` datetime NOT NULL, -> PRIMARY KEY (`connection_id`) -> ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; Query OK, 0 rows affected (0.24 sec) mysql> SET character_set_client = @saved_cs_client; Query OK, 0 rows affected (0.00 sec) mysql> LOCK TABLES `connection` WRITE; Query OK, 0 rows affected (0.00 sec) mysql> /*!40000 ALTER TABLE `connection` DISABLE KEYS */; Query OK, 0 rows affected, 1 warning (0.00 sec) mysql> INSERT INTO `connection` VALUES (1,1,2,'','','0000-00-00 00:00:00','0000-00-00 '> 00:00:00'),(2,6,1,'','','0000-00-00 00:00:00','0000-00-00 '> 00:00:00'),(3,5,1,'','','0000-00-00 00:00:00','0000-00-00 '> 00:00:00'),(4,4,1,'','','0000-00-00 00:00:00','0000-00-00 '> 00:00:00'),(5,3,1,'','','0000-00-00 00:00:00','0000-00-00 '> 00:00:00'),(6,2,1,'','','0000-00-00 00:00:00','0000-00-00 '> 00:00:00'),(7,1,1,'','','0000-00-00 00:00:00','0000-00-00 '> 00:00:00'),(8,6,2,'','','0000-00-00 00:00:00','0000-00-00 '> 00:00:00'),(9,5,2,'','','0000-00-00 00:00:00','0000-00-00 '> 00:00:00'),(10,4,2,'','','0000-00-00 00:00:00','0000-00-00 '> 00:00:00'),(11,3,2,'','','0000-00-00 00:00:00','0000-00-00 '> 00:00:00'),(12,2,2,'','','0000-00-00 00:00:00','0000-00-00 00:00:00'); Query OK, 12 rows affected (0.05 sec) Records: 12 Duplicates: 0 Warnings: 0 mysql> /*!40000 ALTER TABLE `connection` ENABLE KEYS */; Query OK, 0 rows affected, 1 warning (0.00 sec) mysql> UNLOCK TABLES; Query OK, 0 rows affected (0.00 sec)
[9 Jan 2011 16:43]
Jason Bronson
I have to wait until a bit later to try an upgraded version because this is a production server
[9 Jan 2011 16:51]
Valeriy Kravchuk
Please, inform about any results after you'll be able to upgrade.
[10 Feb 2011 0:00]
Bugs System
No feedback was provided for this bug for over a month, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open".