diff options
author | Georgi Kodinov <kgeorge@mysql.com> | 2008-09-10 12:40:58 +0300 |
---|---|---|
committer | Georgi Kodinov <kgeorge@mysql.com> | 2008-09-10 12:40:58 +0300 |
commit | 39fd3c5df7d14156a0a66c5bf984145312171d57 (patch) | |
tree | d5fc329f7f917bc22fe582b682bbfe0fa36c3d1f /mysql-test/t/func_regexp.test | |
parent | 2194850051fc8269274a1561b5890162cac62add (diff) | |
parent | 835f3528b860fe0fbb52145d23e36068f5d43d47 (diff) | |
download | mariadb-git-clone-5.0.70-build.tar.gz |
merged 5.0-5.1.29-rc -> 5.0-bugteamclone-5.0.70-build
Diffstat (limited to 'mysql-test/t/func_regexp.test')
-rw-r--r-- | mysql-test/t/func_regexp.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/func_regexp.test b/mysql-test/t/func_regexp.test index 1b35fab9d54..43fda0d11a8 100644 --- a/mysql-test/t/func_regexp.test +++ b/mysql-test/t/func_regexp.test @@ -64,4 +64,14 @@ drop table t1; SELECT 1 REGEXP NULL; + +# +# Bug #39021: SELECT REGEXP BINARY NULL never returns +# + +SELECT '' REGEXP BINARY NULL; +SELECT NULL REGEXP BINARY NULL; +SELECT 'A' REGEXP BINARY NULL; +SELECT "ABC" REGEXP BINARY NULL; + --echo End of 5.0 tests |