1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

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

This commit is contained in:
bar@mysql.com
2004-11-16 12:05:13 +04:00
parent 8a2ef0a2ca
commit 629f1bb616
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;