Comment 3 for bug 1536469

Revision history for this message
Laurynas Biveinis (laurynas-biveinis) wrote :

Reduced MTR testcase, does note require specific startup options. Does not crash w/ MyISAM or InnoDB, have not tested TokuDB.

CREATE TABLE t0(utf0k json) ENGINE=HEAP;
INSERT INTO t0 values('0');
--error 3140
INSERT INTO t0 VALUES('DBMS stands for DataBase ...');
SELECT * FROM t0;
DROP TABLE t0;