summaryrefslogtreecommitdiff
path: root/mysql-test/t/variables.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r--mysql-test/t/variables.test10
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test
index 78fab3afe42..1ad171f94f6 100644
--- a/mysql-test/t/variables.test
+++ b/mysql-test/t/variables.test
@@ -289,13 +289,13 @@ select @a, @b;
#
# Bug#2586:Disallow global/session/local as structured var. instance names
#
---error 1149
+--error 1064
set @@global.global.key_buffer_size= 1;
---error 1149
+--error 1064
set GLOBAL global.key_buffer_size= 1;
---error 1149
+--error 1064
SELECT @@global.global.key_buffer_size;
---error 1149
+--error 1064
SELECT @@global.session.key_buffer_size;
---error 1149
+--error 1064
SELECT @@global.local.key_buffer_size;