1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Move innodb dependent test from create to mysql_innodb

This commit is contained in:
msvensson@shellback.(none)
2006-05-18 12:55:34 +02:00
parent 206fe5f559
commit 0c7246d688
4 changed files with 15 additions and 13 deletions

View File

@ -54,3 +54,9 @@ c.c_id = 218 and expiredate is null;
slai_id
12
drop table t1, t2;
create table t1(f1 varchar(800) binary not null, key(f1)) engine = innodb
character set utf8 collate utf8_general_ci;
Warnings:
Warning 1071 Specified key was too long; max key length is 765 bytes
insert into t1 values('aaa');
drop table t1;