diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-02-02 22:59:07 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-04-05 15:02:56 +0400 |
commit | 72f43df623261d5fe579cb355451d84216c8882d (patch) | |
tree | 6d2921d9e807e624244af9273b2332e184a5bc60 /mysql-test/t/variables.test | |
parent | ffbb2bbc09e7fc8c0f60d5c42ce521b4c31c94a7 (diff) | |
download | mariadb-git-72f43df623261d5fe579cb355451d84216c8882d.tar.gz |
MDEV-10914 ROW data type for stored routine variables
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index ed6e92f145e..1ba20f0ac9e 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -438,9 +438,9 @@ select @a, @b; # # Bug#2586:Disallow global/session/local as structured var. instance names # ---error ER_PARSE_ERROR +--error ER_UNKNOWN_STRUCTURED_VARIABLE set @@global.global.key_buffer_size= 1; ---error ER_PARSE_ERROR +--error ER_UNKNOWN_STRUCTURED_VARIABLE set GLOBAL global.key_buffer_size= 1; --error ER_PARSE_ERROR SELECT @@global.global.key_buffer_size; |