1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

added error message for receiving variable with wrong GLOBAL|LOCAL type

(bug #2086)
This commit is contained in:
vva@eagle.mysql.r18.ru
2003-12-17 16:37:47 -04:00
parent fddab846d4
commit d49ff0fd62
26 changed files with 35 additions and 8 deletions

View File

@@ -139,7 +139,7 @@ set character set unknown;
set character set 0;
--error 1228
set global autocommit=1;
--error 1228
--error 1238
select @@global.timestamp;
--error 1193
set @@version='';
@@ -147,7 +147,7 @@ set @@version='';
set @@concurrent_insert=1;
--error 1228
set @@global.sql_auto_is_null=1;
--error 1228
--error 1238
select @@global.sql_auto_is_null;
--error 1229
set myisam_max_sort_file_size=100;
@@ -266,3 +266,6 @@ drop table t1,t2;
--error 1193
select @@xxxxxxxxxx;
select 1;
--error 1238
select @@session.key_buffer_size;