diff options
author | ram@gw.mysql.r18.ru <> | 2003-09-19 12:25:03 +0500 |
---|---|---|
committer | ram@gw.mysql.r18.ru <> | 2003-09-19 12:25:03 +0500 |
commit | 50254237de4732eb4507e64ea8d7aeb02e42969b (patch) | |
tree | cb9415d9811ed4cc317f2380d15ce8fd615bf2d3 /mysql-test/r/func_compress.result | |
parent | 7facccf3224c79047e8bc7f49fdd28a5bfaa9fc7 (diff) | |
download | mariadb-git-50254237de4732eb4507e64ea8d7aeb02e42969b.tar.gz |
Fix for the bug #1333: COMPRESS(NULL) segfaults.
Diffstat (limited to 'mysql-test/r/func_compress.result')
-rw-r--r-- | mysql-test/r/func_compress.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/func_compress.result b/mysql-test/r/func_compress.result index c4d2eacf363..57eef44b3bb 100644 --- a/mysql-test/r/func_compress.result +++ b/mysql-test/r/func_compress.result @@ -40,3 +40,9 @@ uncompress(compress("")) select uncompressed_length(""); uncompressed_length("") 0 +select compress(NULL); +compress(NULL) +NULL +select uncompress(NULL); +uncompress(NULL) +NULL |