summaryrefslogtreecommitdiff
path: root/mysql-test/r/nested_profiling.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/nested_profiling.result')
-rw-r--r--mysql-test/r/nested_profiling.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/nested_profiling.result b/mysql-test/r/nested_profiling.result
index 86841383046..b8bceba480a 100644
--- a/mysql-test/r/nested_profiling.result
+++ b/mysql-test/r/nested_profiling.result
@@ -3,6 +3,8 @@ SET @saved_init_connect=@@GLOBAL.init_connect;
SET GLOBAL init_connect="set @a=2;set @b=3";
SET GLOBAL profiling=on;
create user mysqltest1@localhost;
+connect con1,localhost,mysqltest1,,;
+connection con1;
SELECT @a, @b;
@a @b
2 3
@@ -11,6 +13,8 @@ Query_ID Duration Query
1 # set @a=2;set @b=3
2 # set @b=3
3 # SELECT @a, @b
+connection default;
+disconnect con1;
DROP USER mysqltest1@localhost;
SET GLOBAL profiling=@saved_profiling;
SET GLOBAL init_connect=@saved_init_connect;