1
drop table if exists t1;
3
`col_varchar_10_key` varchar(10),
4
`col_varchar_10` varchar(10),
6
`col_varchar_1024_key` varchar(1024),
7
`col_varchar_1024` varchar(1024),
9
pk integer auto_increment,
11
key (`col_varchar_10_key` ),
12
key (`col_varchar_1024_key` ),
17
Warning 1071 Specified key was too long; max key length is 1024 bytes
18
ALTER TABLE `t1` DISABLE KEYS;
19
ERROR 42000: Table 't1' uses an extension that doesn't exist in this Drizzle version
20
ALTER TABLE `t1` ENABLE KEYS;
21
ERROR 42000: Table 't1' uses an extension that doesn't exist in this Drizzle version