mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge polly.(none):/home/kaa/src/opt/bug29131/my50-bug29131
into polly.(none):/home/kaa/src/opt/mysql-5.0-opt mysql-test/r/variables.result: Auto merged mysql-test/t/variables.test: Auto merged sql/mysql_priv.h: Auto merged sql/mysqld.cc: Auto merged sql/set_var.cc: Auto merged
This commit is contained in:
@ -682,6 +682,20 @@ set @@hostname= "anothername";
|
||||
--replace_column 2 #
|
||||
show variables like 'hostname';
|
||||
|
||||
#
|
||||
# Bug #29131: SHOW VARIABLES reports variable 'log' but SET doesn't recognize it
|
||||
#
|
||||
|
||||
SHOW VARIABLES LIKE 'log';
|
||||
SELECT @@log;
|
||||
--error 1238
|
||||
SET GLOBAL log=0;
|
||||
|
||||
SHOW VARIABLES LIKE 'log_slow_queries';
|
||||
SELECT @@log_slow_queries;
|
||||
--error 1238
|
||||
SET GLOBAL log_slow_queries=0;
|
||||
|
||||
--echo End of 5.0 tests
|
||||
|
||||
# This is at the very after the versioned tests, since it involves doing
|
||||
|
Reference in New Issue
Block a user