Comment 2 for bug 1582055

Revision history for this message
Roel Van de Paar (roel11) wrote : Re: handle_fatal_signal (sig=11) in set_null

Note that the reference to TokuDB engine in 1463364118.sql in the tarball is coincidental; you can just change the engine name to "DOESNOTEXIST".

SQL testcase (needs to be executed through pquery binary (included in tarball) as per above):

DROP DATABASE test;CREATE DATABASE test;USE test;
CREATE TABLE t1(c1 INT KEY,c2 INT,INDEX x(c2)) ENGINE=DOESNOTEXIST ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=16;
INSERT INTO t VALUES(NULL),(NULL);
ALTER TABLE t1 PARTITION BY KEY(c1)PARTITIONS 5;
CREATE TABLE t2 ENGINE=MEMORY AS SELECT COALESCE(NULL,NULL,NULL),GREATEST(NULL,NULL);