Comment 1 for bug 1347768

Revision history for this message
Aleksey Sokolov (absokolov2010) wrote :

Reproduce (First run after "mysql_install_db"):

[root@vm-percona /]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 52
Server version: 5.6.19-67.0-56-log Percona XtraDB Cluster (GPL), Release rel67.0, Revision 824, WSREP version 25.6, wsrep_25.6.r4111

Copyright (c) 2009-2014 Percona LLC and/or its affiliates
Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> create database `tested`;
Query OK, 1 row affected (0.03 sec)

mysql> use tested;
Database changed
mysql> 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;
Query OK, 0 rows affected (0.09 sec)

mysql> 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');
ERROR 2013 (HY000): Lost connection to MySQL server during query
mysql>