diff options
author | unknown <ramil@mysql.com> | 2005-05-18 14:46:05 +0500 |
---|---|---|
committer | unknown <ramil@mysql.com> | 2005-05-18 14:46:05 +0500 |
commit | 9971175072131d736ede0f8a32b3d3da3436150c (patch) | |
tree | 62b43460e475729746b88c94737336fd957ddc1a /mysql-test/t/variables.test | |
parent | 0a21bf0c5a39e8f49b4fe39926311f08ef7d10eb (diff) | |
parent | 7c1d520ef1a18ad397499de6d70debe5be81dd99 (diff) | |
download | mariadb-git-9971175072131d736ede0f8a32b3d3da3436150c.tar.gz |
Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/usr/home/ram/work/5.0.b10339
mysql-test/r/variables.result:
Auto merged
mysql-test/t/variables.test:
Auto merged
sql/set_var.cc:
Auto 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 b6059ac00e3..9e8a7a1b56f 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -387,3 +387,11 @@ select a into @x from t1; show warnings; drop table t1; +# +# Bug #10339: read only variables. +# + +--error 1238 +set @@warning_count=1; +--error 1238 +set @@global.error_count=1; |