Bug #92888 | CREATE TABLE ... Assertion `rc == TYPE_OK' failed. | ||
---|---|---|---|
Submitted: | 22 Oct 2018 20:43 | Modified: | 22 Oct 2018 22:13 |
Reporter: | George Lorch | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Server: DML | Severity: | S6 (Debug Builds) |
Version: | 8.0.13 | OS: | Any |
Assigned to: | CPU Architecture: | Any | |
Tags: | debug |
[22 Oct 2018 20:43]
George Lorch
[22 Oct 2018 22:13]
MySQL Verification Team
Thank you for the bug report. Repeatable with released version8.0.13-debug but not anymore with most recent source server then somewhat already fixed on source. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 9 Server version: 8.0.13-debug MySQL Community Server - GPL - Debug Copyright (c) 2000, 2018, 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> SELECT @@VERSION; +--------------+ | @@VERSION | +--------------+ | 8.0.13-debug | +--------------+ 1 row in set (0,00 sec) mysql> CREATE DATABASE TEST; USE TEST; Database changed mysql> CREATE TABLE `t2` ( -> `col1` bigint(20) NOT NULL, -> `col2` varbinary(64) NOT NULL, -> `col3` varbinary(256) NOT NULL, -> `col4` bigint(20) NOT NULL, -> `col5` mediumblob NOT NULL, -> PRIMARY KEY (`col1`,`col2`,`col3`) COMMENT 'custom_p0_cfname=test_cf0;custom_p1_cfname=test_cf1', -> UNIQUE KEY (`col2`, `col4`) COMMENT 'custom_p5_cfname=unique_test_cf5' -> ) ENGINE=INNODB DEFAULT CHARSET=latin1 -> PARTITION BY LIST COLUMNS (`col2`) ( -> PARTITION custom_p0 VALUES IN (0x12345), -> PARTITION custom_p1 VALUES IN (0x23456), -> PARTITION custom_p2 VALUES IN (0x34567), -> PARTITION custom_p3 VALUES IN (0x45678), -> PARTITION custom_p4 VALUES IN (0x56789), -> PARTITION custom_p5 VALUES IN (0x6789A), -> PARTITION custom_p6 VALUES IN (0x789AB), -> PARTITION custom_p7 VALUES IN (0x89ABC) -> ); ERROR 2013 (HY000): Lost connection to MySQL server during query mysql> ******************************************************************* Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 Server version: 8.0.14-debug Source distribution BUILD: 2018-OCT-04 Copyright (c) 2000, 2018, 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 8.0 > drop database test; Query OK, 1 row affected (1,33 sec) mysql 8.0 > SELECT @@VERSION; +--------------+ | @@VERSION | +--------------+ | 8.0.14-debug | +--------------+ 1 row in set (0,00 sec) mysql 8.0 > CREATE DATABASE TEST; USE TEST; Database changed mysql 8.0 > CREATE TABLE `t2` ( -> `col1` bigint(20) NOT NULL, -> `col2` varbinary(64) NOT NULL, -> `col3` varbinary(256) NOT NULL, -> `col4` bigint(20) NOT NULL, -> `col5` mediumblob NOT NULL, -> PRIMARY KEY (`col1`,`col2`,`col3`) COMMENT 'custom_p0_cfname=test_cf0;custom_p1_cfname=test_cf1', -> UNIQUE KEY (`col2`, `col4`) COMMENT 'custom_p5_cfname=unique_test_cf5' -> ) ENGINE=INNODB DEFAULT CHARSET=latin1 -> PARTITION BY LIST COLUMNS (`col2`) ( -> PARTITION custom_p0 VALUES IN (0x12345), -> PARTITION custom_p1 VALUES IN (0x23456), -> PARTITION custom_p2 VALUES IN (0x34567), -> PARTITION custom_p3 VALUES IN (0x45678), -> PARTITION custom_p4 VALUES IN (0x56789), -> PARTITION custom_p5 VALUES IN (0x6789A), -> PARTITION custom_p6 VALUES IN (0x789AB), -> PARTITION custom_p7 VALUES IN (0x89ABC) -> ); Query OK, 0 rows affected (14,55 sec) mysql 8.0 > SHOW VARIABLES LIKE "%VERSION%"; +--------------------------+----------------------------------------+ | Variable_name | Value | +--------------------------+----------------------------------------+ | immediate_server_version | 999999 | | innodb_version | 8.0.14 | | original_server_version | 999999 | | protocol_version | 10 | | slave_type_conversions | | | tls_version | TLSv1,TLSv1.1,TLSv1.2 | | version | 8.0.14-debug | | version_comment | Source distribution BUILD: 2018-OCT-04 | | version_compile_machine | x86_64 | | version_compile_os | Linux | | version_compile_zlib | 1.2.11 | +--------------------------+----------------------------------------+ 11 rows in set (0,06 sec) mysql 8.0 >