1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Bug #37168: Missing variable - skip_name_resolve

Added a read-only global boolean variable skip_name_resolve.
This commit is contained in:
Georgi Kodinov
2010-03-31 16:12:37 +03:00
parent 8a96640e87
commit 56c9c9e9f5
7 changed files with 73 additions and 0 deletions

View File

@ -1495,4 +1495,13 @@ SELECT @@GLOBAL.max_binlog_cache_size;
@@GLOBAL.max_binlog_cache_size
5368709120
SET GLOBAL max_binlog_cache_size = @old_max_binlog_cache_size;
#
# Bug #37168 : Missing variable - skip_name_resolve
#
SELECT @@skip_name_resolve;
@@skip_name_resolve
0
SHOW VARIABLES LIKE 'skip_name_resolve';
Variable_name Value
skip_name_resolve OFF
End of 5.1 tests