mariadb/mysql-test/suite/galera/t/lp1347768.test

25 lines
1.2 KiB
Text
Raw Normal View History

2015-07-14 22:05:29 +02:00
#
# LP:1347768 Assertion failure in file ha_innodb.cc line 6759
#
--source include/galera_cluster.inc
--source include/have_innodb.inc
CREATE TABLE `r8kmb_redirect_links` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`old_url` varchar(255) DEFAULT NULL,
`new_url` varchar(255) NOT NULL,
`referer` varchar(150) NOT NULL,
`comment` varchar(255) NOT NULL,
`published` tinyint(4) NOT NULL,
`created_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_link_old` (`old_url`),
KEY `idx_link_modifed` (`modified_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO r8kmb_redirect_links VALUES (550,'http://mysite.com/images/download/ßуÃÂñÃÂûÑââ¬â€œÃƒâ€˜Ã¢â¬Â¡ÃƒÂýÃÂøÃÂù_ÃÂôÃÂþÃÂóÃÂþÃÂòÑââ¬â€œÃƒâ€˜Ã¢â€šÂ¬_ÃÂþÑââ¬Å¾ÃƒÂõÑ.doc','','','',0,'2013-07-15 14:29:42','0000-00-00 00:00:00');
DROP TABLE r8kmb_redirect_links;