diff options
author | Ramil Kalimullin <ramil@mysql.com> | 2009-02-05 11:45:30 +0400 |
---|---|---|
committer | Ramil Kalimullin <ramil@mysql.com> | 2009-02-05 11:45:30 +0400 |
commit | 9ee53cbcc08128891d7065b63b8a55ec3316c5a3 (patch) | |
tree | 2ce1fb79efe652b51ddf371221dfcb5ecdec16c5 /mysql-test/r/func_misc.result | |
parent | dc0f210a79b3853632fb91ebc60fbb9a1c97b011 (diff) | |
parent | 31d908d70ba6e0240dd85712e474fbc30b95dbd7 (diff) | |
download | mariadb-git-9ee53cbcc08128891d7065b63b8a55ec3316c5a3.tar.gz |
Auto-merge
Diffstat (limited to 'mysql-test/r/func_misc.result')
-rw-r--r-- | mysql-test/r/func_misc.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/func_misc.result b/mysql-test/r/func_misc.result index a3df23138e8..3b864cd5804 100644 --- a/mysql-test/r/func_misc.result +++ b/mysql-test/r/func_misc.result @@ -324,6 +324,11 @@ select @my_uuid_date - @my_uuid_synthetic; @my_uuid_date - @my_uuid_synthetic 0 set @@session.time_zone=@save_tz; +CREATE TABLE t1 (a DATE); +SELECT * FROM t1 WHERE a = NAME_CONST('reportDate', +_binary'2009-01-09' COLLATE 'binary'); +a +DROP TABLE t1; End of 5.0 tests select connection_id() > 0; connection_id() > 0 |