~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/t/variables.test

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
778
778
--replace_column 2 #
779
779
show global variables where Variable_name='table_definition_cache' or
780
780
Variable_name='table_lock_wait_timeout';
 
781
 
 
782
###########################################################################
 
783
 
 
784
--echo
 
785
--echo # --
 
786
--echo # -- Bug#34820: log_output can be set to illegal value.
 
787
--echo # --
 
788
 
 
789
--error ER_WRONG_VALUE_FOR_VAR
 
790
SET GLOBAL log_output = '';
 
791
 
 
792
--error ER_WRONG_VALUE_FOR_VAR
 
793
SET GLOBAL log_output = 0;
 
794
 
 
795
--error ER_WRONG_VALUE_FOR_VAR
 
796
SET GLOBAL log_output = NULL;
 
797
 
 
798
 
 
799
--echo
 
800
--echo # -- End of Bug#34820.
 
801