diff options
author | bell@sanja.is.com.ua <> | 2004-03-30 23:38:56 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-03-30 23:38:56 +0300 |
commit | e3a619f0059c6f3a90a21b0e8219b049e5056ee3 (patch) | |
tree | 040a63eb96cf56a15dd16793212073d9f05a9390 /mysql-test/t/query_cache.test | |
parent | 54d5f4ae8f9d49ab4f023be652346d169b4f34d4 (diff) | |
download | mariadb-git-e3a619f0059c6f3a90a21b0e8219b049e5056ee3.tar.gz |
null processing for character_set_results (BUG#3296)
Diffstat (limited to 'mysql-test/t/query_cache.test')
-rw-r--r-- | mysql-test/t/query_cache.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/query_cache.test b/mysql-test/t/query_cache.test index 31aa69e32ec..b3111b614c6 100644 --- a/mysql-test/t/query_cache.test +++ b/mysql-test/t/query_cache.test @@ -620,5 +620,11 @@ SELECT * FROM test.t1; USE test; DROP TABLE t1; +# +# charset with NULL +# +set character_set_results=null; +select @@character_set_results; +set character_set_results=default; SET GLOBAL query_cache_size=0; |