diff options
author | unknown <serg@serg.mylan> | 2004-03-20 17:08:01 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-03-20 17:08:01 +0100 |
commit | 81836c8ec37eb47b630563f0d75caf9964928c9f (patch) | |
tree | f0790f4062189e28598ffaa8e38beab1452edfec /mysql-test/t/variables.test | |
parent | 1f08d0b4bdfd85f8bea89cf1a2c729558ab69aad (diff) | |
download | mariadb-git-81836c8ec37eb47b630563f0d75caf9964928c9f.tar.gz |
more sys_var_str fixes
mysql-test/r/variables.result:
more tests
mysql-test/t/variables.test:
more tests
sql/set_var.cc:
don't crash on NULL
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index c3f7c613005..26eacb86164 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -272,6 +272,15 @@ select @@session.key_buffer_size; --error 1229 set ft_boolean_syntax = @@init_connect; +--error 1231 +set global ft_boolean_syntax = @@init_connect; +--error 1229 +set init_connect = NULL; +set global init_connect = NULL; +--error 1229 +set ft_boolean_syntax = @@init_connect; +--error 1231 +set global ft_boolean_syntax = @@init_connect; # # swap |