diff options
author | unknown <bar@mysql.com> | 2004-08-26 16:31:37 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-08-26 16:31:37 +0500 |
commit | 42771f9877c17050a230cdaf8a26afc5d077a712 (patch) | |
tree | 87bdea54aaf019dbdbc0f7e73a1ff7be7842b4bb /mysql-test/r/endspace.result | |
parent | c1825f208cafe972f69517c2b164de5ccfb2ab92 (diff) | |
download | mariadb-git-42771f9877c17050a230cdaf8a26afc5d077a712.tar.gz |
"SELECT BINARY x" now means "SELECT CAST(x AS BINARY)".
Diffstat (limited to 'mysql-test/r/endspace.result')
-rw-r--r-- | mysql-test/r/endspace.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/endspace.result b/mysql-test/r/endspace.result index 167adea6674..4800bbf4ecb 100644 --- a/mysql-test/r/endspace.result +++ b/mysql-test/r/endspace.result @@ -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; |