1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

4.1->5.0 merge

This commit is contained in:
sergefp@mysql.com
2005-10-29 02:36:57 +04:00
6 changed files with 39 additions and 6 deletions

View File

@@ -545,4 +545,12 @@ create table t1 (a int);
create table if not exists t1 (a int);
drop table t1;
# BUG#14139
create table t1 (
a varchar(112) charset utf8 collate utf8_bin not null,
primary key (a)
) select 'test' as a ;
show create table t1;
drop table t1;
# End of 4.1 tests