summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/r/socket_connect.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/perfschema/r/socket_connect.result')
-rw-r--r--mysql-test/suite/perfschema/r/socket_connect.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/suite/perfschema/r/socket_connect.result b/mysql-test/suite/perfschema/r/socket_connect.result
index bec16b45f07..5de362bf370 100644
--- a/mysql-test/suite/perfschema/r/socket_connect.result
+++ b/mysql-test/suite/perfschema/r/socket_connect.result
@@ -134,21 +134,21 @@ connection default;
#
# 4.1 Verify that there are two TCP/IP connections in the socket instance table
#
-SELECT COUNT(*) = 2 AS 'Expect 1'
+SELECT COUNT(*) = 2 AS 'Expect 2'
FROM performance_schema.socket_instances
WHERE EVENT_NAME LIKE '%client_connection%'
AND OBJECT_INSTANCE_BEGIN <> @default_object_instance_begin
AND (IP LIKE '%127.0.0.1' OR IP LIKE '%::1');
-Expect 1
+Expect 2
1
#
# 4.2 Verify that there are two TCP/IP connections in the summary instance table
#
-SELECT COUNT(*) = 2 AS 'Expect 1'
+SELECT COUNT(*) = 2 AS 'Expect 2'
FROM performance_schema.socket_summary_by_instance
WHERE EVENT_NAME LIKE '%client_connection%'
AND OBJECT_INSTANCE_BEGIN <> @default_object_instance_begin;
-Expect 1
+Expect 2
1
#==============================================================================
# 5.0 Drop the client connections