diff options
author | unknown <bar@mysql.com> | 2005-09-02 11:19:43 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2005-09-02 11:19:43 +0500 |
commit | 3b077226c9d2721725405410cd64868e76ba095b (patch) | |
tree | be799aa133533727c1a04f8e06f0d1efecfd4f91 /mysql-test/t/variables.test | |
parent | b513103619bb4b7172708b364f71334570e428db (diff) | |
parent | bda02a17e79f3346ce2680ed04670e11f2bfcf63 (diff) | |
download | mariadb-git-3b077226c9d2721725405410cd64868e76ba095b.tar.gz |
Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/usr/home/bar/mysql-4.1.b12363
mysql-test/t/variables.test:
Auto merged
sql/set_var.cc:
Auto merged
mysql-test/r/variables.result:
SCCS merged
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index f888541f17a..a8844070207 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -380,6 +380,14 @@ SET GLOBAL table_cache=-1; SHOW VARIABLES LIKE 'table_cache'; SET GLOBAL table_cache=DEFAULT; +# +# Bugs12363: character_set_results is nullable, +# but value_ptr returns string "NULL" +# +set character_set_results=NULL; +select ifnull(@@character_set_results,"really null"); +set names latin1; + # End of 4.1 tests # |