mirror of
https://github.com/MariaDB/server.git
synced 2026-05-03 05:35:31 +02:00
Bug #6552 CHAR column w/o length is legal, BINARY w/o length is not
This commit is contained in:
parent
b478635110
commit
b670ccac13
3 changed files with 17 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue