diff options
author | Ramil Kalimullin <ramil@mysql.com> | 2008-09-05 13:36:02 +0500 |
---|---|---|
committer | Ramil Kalimullin <ramil@mysql.com> | 2008-09-05 13:36:02 +0500 |
commit | bef0ee999dd8150e0e3a14c0bd6d47706f56ee31 (patch) | |
tree | 4696250e187d90113246c7b8a5a5db46fdf82c7d /mysql-test/t/func_regexp.test | |
parent | dbbb48c3c7295539a3fc1a71e21f5649ee02637b (diff) | |
parent | 788be2aebdb0bce63b45b1fecf2f2d8a12a5cfc7 (diff) | |
download | mariadb-git-bef0ee999dd8150e0e3a14c0bd6d47706f56ee31.tar.gz |
Merge
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 f3677b8f5b0..638e0bf08ee 100644 --- a/mysql-test/t/func_regexp.test +++ b/mysql-test/t/func_regexp.test @@ -64,6 +64,16 @@ 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 |