summaryrefslogtreecommitdiff
path: root/mysql-test/r/variables.result
diff options
context:
space:
mode:
authorGeorgi Kodinov <joro@sun.com>2010-03-31 16:12:37 +0300
committerGeorgi Kodinov <joro@sun.com>2010-03-31 16:12:37 +0300
commite65caec1387ecc3b25a3a97c5ccedb9c16caa0ef (patch)
treeea9d013ac400a69d621d922b7a8a309f584d09af /mysql-test/r/variables.result
parent6eca53f1d382a247456d29794c70338f972b77a9 (diff)
downloadmariadb-git-e65caec1387ecc3b25a3a97c5ccedb9c16caa0ef.tar.gz
Bug #37168: Missing variable - skip_name_resolve
Added a read-only global boolean variable skip_name_resolve.
Diffstat (limited to 'mysql-test/r/variables.result')
-rw-r--r--mysql-test/r/variables.result9
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/variables.result b/mysql-test/r/variables.result
index ff6d4cf85d9..94a7661d327 100644
--- a/mysql-test/r/variables.result
+++ b/mysql-test/r/variables.result
@@ -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