mirror of
https://github.com/MariaDB/server.git
synced 2026-04-22 08:15:31 +02:00
"SELECT BINARY x" now means "SELECT CAST(x AS BINARY)".
This commit is contained in:
parent
c1825f208c
commit
42771f9877
8 changed files with 9 additions and 11 deletions
|
|
@ -19,7 +19,7 @@ select 'a a' > 'a', 'a \0' < 'a';
|
|||
1 1
|
||||
select binary 'a a' > 'a', binary 'a \0' > 'a', binary 'a\0' > 'a';
|
||||
binary 'a a' > 'a' binary 'a \0' > 'a' binary 'a\0' > 'a'
|
||||
1 0 0
|
||||
1 1 1
|
||||
create table t1 (text1 varchar(32) not NULL, KEY key1 (text1));
|
||||
insert into t1 values ('teststring'), ('nothing'), ('teststring\t');
|
||||
check table t1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue