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

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
parent b478635110
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;