mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
eb07ae4605
------------------------------------------------------------ revno: 3520 committer: Jimmy Yang <jimmy.yang@oracle.com> branch nick: mysql-5.1-innodb timestamp: Tue 2010-06-22 19:04:31 -0700 message: Fix bug #54044, Create temporary tables and using innodb crashes. Screen out NULL type columns, and return without creating the table. rb://378 approved by Marko ------------------------------------------------------------
3 lines
159 B
Text
3 lines
159 B
Text
CREATE TEMPORARY TABLE TABLE_54044 ENGINE = INNODB
|
|
AS SELECT IF(NULL IS NOT NULL, NULL, NULL);
|
|
ERROR HY000: Can't create table 'test.TABLE_54044' (errno: -1)
|