diff options
author | unknown <serg@serg.mylan> | 2004-03-20 14:36:00 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-03-20 14:36:00 +0100 |
commit | eb3ded5665fa43e616d8e02f4a63805848c3747b (patch) | |
tree | 24da11aa25768046ee1aea611ef024c0d5c3d5e3 /mysql-test/t/variables.test | |
parent | 5395e2e08a53e364a2a55b876877aaa5fb4d32c6 (diff) | |
download | mariadb-git-eb3ded5665fa43e616d8e02f4a63805848c3747b.tar.gz |
select @@smth=@@sys_str_var crash fixed
mysql-test/r/variables.result:
new test
mysql-test/t/ctype_utf8.test:
typos fixed
mysql-test/t/variables.test:
new test
sql/mysqld.cc:
sys_str_var->value must be not NULL
sql/set_var.cc:
initialize sys_str_var->value from a constructor
sql/set_var.h:
initialize sys_str_var->value from a constructor
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index 1ad171f94f6..c3f7c613005 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -270,6 +270,9 @@ select 1; --error 1238 select @@session.key_buffer_size; +--error 1229 +set ft_boolean_syntax = @@init_connect; + # # swap # |