13
26
CREATE TEMPORARY TABLE t1 (a int NOT NULL) ENGINE = CSV;
14
27
ALTER TABLE t1 ADD COLUMN b CHAR(5);
15
28
ERROR 42000: The storage engine for the table doesn't support nullable columns
16
32
ALTER TABLE t1 MODIFY a BIGINT;
17
33
ERROR 42000: The storage engine for the table doesn't support nullable columns
18
37
ALTER TABLE t1 CHANGE a a INT;
19
38
ERROR 42000: The storage engine for the table doesn't support nullable columns