diff options
Diffstat (limited to 'mysql-test/t/binary.test')
-rw-r--r-- | mysql-test/t/binary.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/binary.test b/mysql-test/t/binary.test index 7853b013ae6..be9917dc888 100644 --- a/mysql-test/t/binary.test +++ b/mysql-test/t/binary.test @@ -2,6 +2,7 @@ # test sort,min and max on binary fields # +drop table if exists t1,t2; create table t1 (name char(20) not null, primary key (name)); create table t2 (name char(20) binary not null, primary key (name)); insert into t1 values ("å"); |