1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Bug #17849: sql_big_selects not shown in SHOW VARIABLES output

This patch simply adds sql_big_selects to the list of variables
  output by SHOW VARIABLES.
This commit is contained in:
jimw@mysql.com
2006-04-26 09:21:53 -07:00
parent d96fbd738d
commit 960c5621eb
3 changed files with 18 additions and 2 deletions

View File

@ -472,4 +472,12 @@ select @@character_set_filesystem;
set @@global.character_set_filesystem=default;
select @@global.character_set_filesystem;
# End of 5.0 tests
#
# Bug #17849: Show sql_big_selects in SHOW VARIABLES
#
set @old_sql_big_selects = @@sql_big_selects;
set @@sql_big_selects = 1;
show variables like 'sql_big_selects';
set @@sql_big_selects = @old_sql_big_selects;
--echo End of 5.0 tests