Comment 16 for bug 1267507

Revision history for this message
Axel (ajurak) wrote :

oh, now it chrashed in an other table!
now it's the article_plain.

article, article_attachment, article_flag were loaded successfully

but the next one, article_plain, crashed.
it should have 27406 rows, but has only 24876.

--
-- Table structure for table `article_plain`
--

CREATE TABLE IF NOT EXISTS `article_plain` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `article_id` bigint(20) NOT NULL,
  `body` longblob NOT NULL,
  `create_time` datetime NOT NULL,
  `create_by` int(11) NOT NULL,
  `change_time` datetime NOT NULL,
  `change_by` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `article_plain_article_id` (`article_id`),
  KEY `create_by` (`create_by`),
  KEY `change_by` (`change_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=26360 ;