Bug #75958 | handle_fatal_signal (sig=11) in String::replace | INSERT into TEMPORARY table | ||
---|---|---|---|
Submitted: | 18 Feb 2015 18:21 | Modified: | 18 Feb 2015 22:32 |
Reporter: | Roel Van de Paar | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Server: DML | Severity: | S1 (Critical) |
Version: | 5.7.5-m15 | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[18 Feb 2015 18:21]
Roel Van de Paar
[18 Feb 2015 19:17]
MySQL Verification Team
looks like a duplicate of mine, which is fixed in 5.7.6 Bug 19174480 - INSERT STRING FUNCTIONS RECENTLY CRASHING
[18 Feb 2015 22:32]
MySQL Verification Team
Thank you for the bug report. Not more repeatable with recent source code and looks duplicate of Bug 19174480 - INSERT STRING FUNCTIONS RECENTLY CRASHING filed by Shane Bester which was already fixed: C:\dbs>net start mysqld57 The MySQLD57 service is starting.. The MySQLD57 service was started successfully. C:\dbs>57 C:\dbs>c:\dbs\5.7\bin\mysql -uroot --port=3570 --prompt="mysql 5.7 > " Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.6-m16-debug Source distribution 2015/02/09 Copyright (c) 2000, 2015, 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 5.7 > DROP DATABASE test;CREATE DATABASE test;USE test; Query OK, 0 rows affected (0.01 sec) Query OK, 1 row affected (0.00 sec) Database changed mysql 5.7 > CREATE TEMPORARY TABLE t1(c1 TIMESTAMP); Query OK, 0 rows affected (0.00 sec) mysql 5.7 > INSERT INTO t1 VALUES(3),(5); Query OK, 2 rows affected, 2 warnings (0.00 sec) Records: 2 Duplicates: 0 Warnings: 2 mysql 5.7 > select insert(c1,1,2,0),insert(0,1,2,c1) from t1; +--------------------+---------------------+ | insert(c1,1,2,0) | insert(0,1,2,c1) | +--------------------+---------------------+ | 000-00-00 00:00:00 | 0000-00-00 00:00:00 | | 000-00-00 00:00:00 | 0000-00-00 00:00:00 | +--------------------+---------------------+ 2 rows in set (0.00 sec) mysql 5.7 > SHOW VARIABLES LIKE "%VERSION%"; +-------------------------+--------------------------------+ | Variable_name | Value | +-------------------------+--------------------------------+ | innodb_version | 5.7.6 | | protocol_version | 10 | | slave_type_conversions | | | version | 5.7.6-m16-debug | | version_comment | Source distribution 2015/02/09 | | version_compile_machine | x86_64 | | version_compile_os | Win64 | +-------------------------+--------------------------------+ 7 rows in set (0.00 sec) mysql 5.7 >