Bug #6552 CHAR column w/o length is legal, BINARY w/o length is not

This commit is contained in:
unknown 2004-11-16 12:05:13 +04:00
commit b670ccac13
3 changed files with 17 additions and 0 deletions

View file

@ -80,3 +80,10 @@ select * from t1 where firstname='john' and firstname = binary 'john';
select * from t1 where firstname='John' and firstname like binary 'john';
select * from t1 where firstname='john' and firstname like binary 'John';
drop table t1;
#
# Bug #6552 CHAR column w/o length is legal, BINARY w/o length is not
#
create table t1 (a binary);
show create table t1;
drop table t1;