diff options
author | gluh@eagle.intranet.mysql.r18.ru <> | 2005-09-07 15:38:09 +0500 |
---|---|---|
committer | gluh@eagle.intranet.mysql.r18.ru <> | 2005-09-07 15:38:09 +0500 |
commit | 01afb3390bacc79931d4db36240ee28d8d13b9b1 (patch) | |
tree | 855fc99c7e2d4560cf60d1f78a825e07e0c8dadd /mysql-test/r/variables.result | |
parent | 03d10aeaca9f308f17b300044860bf6aad19e657 (diff) | |
download | mariadb-git-01afb3390bacc79931d4db36240ee28d8d13b9b1.tar.gz |
Fix for bug#11775 Variable character_set_system does not exist (sometimes).
Variable character_set_system is selectable now
More accurate error message results during
update of character_set_system and some other read only variables
Diffstat (limited to 'mysql-test/r/variables.result')
-rw-r--r-- | mysql-test/r/variables.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/variables.result b/mysql-test/r/variables.result index a5b76c03b29..265f353ae3c 100644 --- a/mysql-test/r/variables.result +++ b/mysql-test/r/variables.result @@ -545,3 +545,10 @@ select @@max_heap_table_size > 0; select @@have_innodb; @@have_innodb # +select @@character_set_system; +@@character_set_system +utf8 +set global character_set_system = latin1; +ERROR HY000: Variable 'character_set_system' is a read only variable +set @@global.version_compile_os='234'; +ERROR HY000: Variable 'version_compile_os' is a read only variable |