13 lines
488 B
Plaintext
13 lines
488 B
Plaintext
CREATE TABLE `bug21328` (
|
|
`col1` int(11) NOT NULL,
|
|
`col2` int(11) NOT NULL,
|
|
`col3` int(11) NOT NULL
|
|
) ENGINE=CSV;
|
|
Warnings:
|
|
Warning 1681 Integer display width is deprecated and will be removed in a future release.
|
|
Warning 1681 Integer display width is deprecated and will be removed in a future release.
|
|
Warning 1681 Integer display width is deprecated and will be removed in a future release.
|
|
insert into bug21328 values (1,0,0);
|
|
alter table bug21328 engine=myisam;
|
|
drop table bug21328;
|