From b670ccac133f8ff678d6721fef28397250c14cda Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 16 Nov 2004 12:05:13 +0400 Subject: Bug #6552 CHAR column w/o length is legal, BINARY w/o length is not --- mysql-test/t/binary.test | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'mysql-test/t/binary.test') diff --git a/mysql-test/t/binary.test b/mysql-test/t/binary.test index 3e702fd5257..54ad8e92237 100644 --- a/mysql-test/t/binary.test +++ b/mysql-test/t/binary.test @@ -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; -- cgit v1.2.1